We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | { |
25 | 25 | parent::setUp(); |
26 | 26 | |
27 | - $this->app->singleton('crud', function ($app) { |
|
27 | + $this->app->singleton('crud', function($app) { |
|
28 | 28 | return new CrudPanel($app); |
29 | 29 | }); |
30 | 30 | $this->crudPanel = app('crud'); |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | $app['config']->set('database.default', 'testing'); |
44 | 44 | $app['config']->set('backpack.base.route_prefix', 'admin'); |
45 | 45 | |
46 | - $app->bind('App\Http\Middleware\CheckIfAdmin', function () { |
|
46 | + $app->bind('App\Http\Middleware\CheckIfAdmin', function() { |
|
47 | 47 | return new class |
48 | 48 | { |
49 | 49 | public function handle($request, $next) |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | { |
44 | 44 | $routeFilePath = base_path($this->option('route-file')); |
45 | 45 | |
46 | - if (! file_exists($routeFilePath)) { |
|
46 | + if (!file_exists($routeFilePath)) { |
|
47 | 47 | if ($routeFilePath !== base_path($this->backpackCustomRouteFile)) { |
48 | 48 | $this->info('The route file <fg=blue>'.$routeFilePath.'</> does not exist. Please create it first.'); |
49 | 49 | |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | |
101 | 101 | private function cleanContentArray(array $content) |
102 | 102 | { |
103 | - return array_filter(array_map(function ($line) { |
|
103 | + return array_filter(array_map(function($line) { |
|
104 | 104 | $lineText = trim($line); |
105 | 105 | if ($lineText === '' || |
106 | 106 | $lineText === '\n' || |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | */ |
134 | 134 | private function getLastLineNumberThatContains($needle, $haystack) |
135 | 135 | { |
136 | - $matchingLines = array_filter($haystack, function ($k) use ($needle) { |
|
136 | + $matchingLines = array_filter($haystack, function($k) use ($needle) { |
|
137 | 137 | return strpos($k, $needle) !== false; |
138 | 138 | }); |
139 | 139 |
@@ -198,6 +198,6 @@ |
||
198 | 198 | |
199 | 199 | $this->assertEquals([ |
200 | 200 | 'extras' => "{\"content\":\"Content Value\",\"metas\":[\"meta1\",\"meta2\",\"meta3\"]}" |
201 | - ], $compactedFakeFields); |
|
201 | + ], $compactedFakeFields); |
|
202 | 202 | } |
203 | 203 | } |