We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -88,13 +88,13 @@ discard block |
||
88 | 88 | */ |
89 | 89 | public function register() |
90 | 90 | { |
91 | - $this->app->bind('CRUD', function ($app) { |
|
91 | + $this->app->bind('CRUD', function($app) { |
|
92 | 92 | return new CRUD($app); |
93 | 93 | }); |
94 | 94 | |
95 | 95 | // load a macro for Route, |
96 | 96 | // for developers to be able to load all routes for a CRUD resource in one line |
97 | - if (! Route::hasMacro('crudResource')) { |
|
97 | + if (!Route::hasMacro('crudResource')) { |
|
98 | 98 | $this->addRouteMacro(); |
99 | 99 | } |
100 | 100 | |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | $this->commands($this->commands); |
106 | 106 | |
107 | 107 | // map the elfinder prefix |
108 | - if (! \Config::get('elfinder.route.prefix')) { |
|
108 | + if (!\Config::get('elfinder.route.prefix')) { |
|
109 | 109 | \Config::set('elfinder.route.prefix', \Config::get('backpack.base.route_prefix').'/elfinder'); |
110 | 110 | } |
111 | 111 | } |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | */ |
119 | 119 | private function addRouteMacro() |
120 | 120 | { |
121 | - Route::macro('crud', function ($name, $controller) { |
|
121 | + Route::macro('crud', function($name, $controller) { |
|
122 | 122 | // check if a specific route name was passed |
123 | 123 | $routeName = ''; |
124 | 124 | if ($this->hasGroupStack()) { |
@@ -161,7 +161,7 @@ discard block |
||
161 | 161 | { |
162 | 162 | $crudPubPath = public_path('vendor/backpack/crud'); |
163 | 163 | |
164 | - if (! is_dir($crudPubPath)) { |
|
164 | + if (!is_dir($crudPubPath)) { |
|
165 | 165 | return true; |
166 | 166 | } |
167 | 167 |