We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -86,13 +86,13 @@ discard block |
||
86 | 86 | public function register() |
87 | 87 | { |
88 | 88 | // Bind the CrudPanel object to Laravel's service container |
89 | - $this->app->singleton('crud', function ($app) { |
|
89 | + $this->app->singleton('crud', function($app) { |
|
90 | 90 | return new CrudPanel($app); |
91 | 91 | }); |
92 | 92 | |
93 | 93 | // load a macro for Route, |
94 | 94 | // for developers to be able to load all routes for a CRUD resource in one line |
95 | - if (! Route::hasMacro('crud')) { |
|
95 | + if (!Route::hasMacro('crud')) { |
|
96 | 96 | $this->addRouteMacro(); |
97 | 97 | } |
98 | 98 | |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | $this->commands($this->commands); |
104 | 104 | |
105 | 105 | // map the elfinder prefix |
106 | - if (! \Config::get('elfinder.route.prefix')) { |
|
106 | + if (!\Config::get('elfinder.route.prefix')) { |
|
107 | 107 | \Config::set('elfinder.route.prefix', \Config::get('backpack.base.route_prefix').'/elfinder'); |
108 | 108 | } |
109 | 109 | } |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | */ |
117 | 117 | private function addRouteMacro() |
118 | 118 | { |
119 | - Route::macro('crud', function ($name, $controller) { |
|
119 | + Route::macro('crud', function($name, $controller) { |
|
120 | 120 | // put together the route name prefix, |
121 | 121 | // as passed to the Route::group() statements |
122 | 122 | $routeName = ''; |
@@ -162,7 +162,7 @@ discard block |
||
162 | 162 | { |
163 | 163 | $crudPubPath = public_path('vendor/backpack/crud'); |
164 | 164 | |
165 | - if (! is_dir($crudPubPath)) { |
|
165 | + if (!is_dir($crudPubPath)) { |
|
166 | 166 | return true; |
167 | 167 | } |
168 | 168 |