We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | public function up() |
15 | 15 | { |
16 | - Schema::create('addresses', function (Blueprint $table) { |
|
16 | + Schema::create('addresses', function(Blueprint $table) { |
|
17 | 17 | $table->increments('id'); |
18 | 18 | $table->integer('account_details_id')->unsigned(); |
19 | 19 | $table->string('city')->nullable(); |
@@ -26,7 +26,7 @@ |
||
26 | 26 | |
27 | 27 | $app['router']->get('admin/users', "$controller@index")->name('admin.users.index'); |
28 | 28 | |
29 | - $app->singleton('crud', function ($app) { |
|
29 | + $app->singleton('crud', function($app) { |
|
30 | 30 | return new CrudPanel($app); |
31 | 31 | }); |
32 | 32 |