We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -88,8 +88,7 @@ discard block |
||
88 | 88 | if (view()->exists('vendor.dick.crud.list')) |
89 | 89 | { |
90 | 90 | return view('vendor.dick.crud.list', $this->data); |
91 | - } |
|
92 | - else |
|
91 | + } else |
|
93 | 92 | { |
94 | 93 | return view('crud::list', $this->data); |
95 | 94 | } |
@@ -134,8 +133,7 @@ discard block |
||
134 | 133 | if (view()->exists('vendor.dick.crud.edit')) |
135 | 134 | { |
136 | 135 | return view('vendor.dick.crud.edit', $this->data); |
137 | - } |
|
138 | - else |
|
136 | + } else |
|
139 | 137 | { |
140 | 138 | return view('crud::edit', $this->data); |
141 | 139 | } |
@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::create('settings', function (Blueprint $table) { |
|
15 | + Schema::create('settings', function(Blueprint $table) { |
|
16 | 16 | $table->increments('id'); |
17 | 17 | $table->string('key'); |
18 | 18 | $table->string('name'); |
@@ -36,8 +36,8 @@ discard block |
||
36 | 36 | } |
37 | 37 | |
38 | 38 | // publish the migrations and seeds |
39 | - $this->publishes([ __DIR__.'/database/migrations/' => database_path('migrations') ], 'migrations'); |
|
40 | - $this->publishes([ __DIR__.'/database/seeds/' => database_path('seeds') ], 'seeds'); |
|
39 | + $this->publishes([__DIR__.'/database/migrations/' => database_path('migrations')], 'migrations'); |
|
40 | + $this->publishes([__DIR__.'/database/seeds/' => database_path('seeds')], 'seeds'); |
|
41 | 41 | } |
42 | 42 | /** |
43 | 43 | * Define the routes for the application. |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | } |
70 | 70 | private function registerSettings() |
71 | 71 | { |
72 | - $this->app->bind('settings',function($app){ |
|
72 | + $this->app->bind('settings', function($app) { |
|
73 | 73 | return new Settings($app); |
74 | 74 | }); |
75 | 75 | } |