Skip to content

Commit

Permalink
Merge pull request #9 from TheOrchid/analysis-8P2bPP
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
tabuna authored Sep 3, 2017
2 parents 8f8b432 + a4c2cdc commit 2e1c7cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public function up()
$table->softDeletes();
$table->index(['status', 'type']);
});
}catch (\Exception $exception){
} catch (\Exception $exception) {
Schema::create('posts', function (Blueprint $table) {
$table->increments('id');
$table->integer('user_id');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public function up()
$table->integer('term_group')->default(0);
$table->timestamps();
});
}catch (\Exception $exception){
} catch (\Exception $exception) {
Schema::create('terms', function (Blueprint $table) {
$table->increments('id');
$table->string('slug')->unique();
Expand Down

0 comments on commit 2e1c7cf

Please sign in to comment.