GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( a9bc98...b864c9 )
by butschster
10:50
created
src/Model/ModelConfiguration.php 2 patches
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
     /**
70 70
      * @var array
71 71
      */
72
-    protected $redirect = ['edit' => 'edit', 'create' => 'edit'];
72
+    protected $redirect = [ 'edit' => 'edit', 'create' => 'edit' ];
73 73
 
74 74
     /**
75 75
      * @var Closure|null
@@ -368,7 +368,7 @@  discard block
 block discarded – undo
368 368
      */
369 369
     public function isCreatable()
370 370
     {
371
-        if (! is_callable($this->getCreate())) {
371
+        if (!is_callable($this->getCreate())) {
372 372
             return false;
373 373
         }
374 374
 
@@ -392,7 +392,7 @@  discard block
 block discarded – undo
392 392
      */
393 393
     public function isEditable(Model $model)
394 394
     {
395
-        if (! is_callable($this->getEdit())) {
395
+        if (!is_callable($this->getEdit())) {
396 396
             return false;
397 397
         }
398 398
 
@@ -502,7 +502,7 @@  discard block
 block discarded – undo
502 502
      */
503 503
     public function fireDisplay()
504 504
     {
505
-        if (! is_callable($this->display)) {
505
+        if (!is_callable($this->display)) {
506 506
             return;
507 507
         }
508 508
 
@@ -520,7 +520,7 @@  discard block
 block discarded – undo
520 520
      */
521 521
     public function fireCreate()
522 522
     {
523
-        if (! is_callable($this->create)) {
523
+        if (!is_callable($this->create)) {
524 524
             return;
525 525
         }
526 526
 
@@ -547,11 +547,11 @@  discard block
 block discarded – undo
547 547
      */
548 548
     public function fireEdit($id)
549 549
     {
550
-        if (! is_callable($this->edit)) {
550
+        if (!is_callable($this->edit)) {
551 551
             return;
552 552
         }
553 553
 
554
-        $form = app()->call($this->edit, ['id' => $id]);
554
+        $form = app()->call($this->edit, [ 'id' => $id ]);
555 555
         if ($form instanceof DisplayInterface) {
556 556
             $form->setModelClass($this->getClass());
557 557
         }
@@ -576,7 +576,7 @@  discard block
 block discarded – undo
576 576
     public function fireDelete($id)
577 577
     {
578 578
         if (is_callable($this->getDelete())) {
579
-            return app()->call($this->getDelete(), [$id]);
579
+            return app()->call($this->getDelete(), [ $id ]);
580 580
         }
581 581
     }
582 582
 
@@ -588,7 +588,7 @@  discard block
 block discarded – undo
588 588
     public function fireDestroy($id)
589 589
     {
590 590
         if (is_callable($this->getDestroy())) {
591
-            return app()->call($this->getDestroy(), [$id]);
591
+            return app()->call($this->getDestroy(), [ $id ]);
592 592
         }
593 593
     }
594 594
 
@@ -600,7 +600,7 @@  discard block
 block discarded – undo
600 600
     public function fireRestore($id)
601 601
     {
602 602
         if (is_callable($this->getRestore())) {
603
-            return app()->call($this->getRestore(), [$id]);
603
+            return app()->call($this->getRestore(), [ $id ]);
604 604
         }
605 605
 
606 606
         return $this->getRestore();
@@ -744,7 +744,7 @@  discard block
 block discarded – undo
744 744
         $repository = $this->getRepository();
745 745
         $item = $repository->find($id);
746 746
 
747
-        if (is_null($item) || ! $this->isEditable($item)) {
747
+        if (is_null($item) || !$this->isEditable($item)) {
748 748
             abort(404);
749 749
         }
750 750
 
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
     }
25 25
 
26 26
     /**
27
-     * @return string
27
+     * @return \Illuminate\Support\Collection
28 28
      */
29 29
     public function getRedirect()
30 30
     {
Please login to merge, or discard this patch.
src/Console/Installation/Command.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -28,16 +28,16 @@
 block discarded – undo
28 28
      */
29 29
     public function fire(Filesystem $files)
30 30
     {
31
-        if (! defined('SLEEPINGOWL_STUB_PATH')) {
31
+        if (!defined('SLEEPINGOWL_STUB_PATH')) {
32 32
             define('SLEEPINGOWL_STUB_PATH', __DIR__.'/stubs');
33 33
         }
34 34
 
35
-        if (! $this->confirmToProceed('SleepingOwl Admin')) {
35
+        if (!$this->confirmToProceed('SleepingOwl Admin')) {
36 36
             return;
37 37
         }
38 38
 
39
-        $this->call('vendor:publish', ['--tag' => 'config']);
40
-        $this->config = new Repository($this->laravel['config']->get('sleeping_owl'));
39
+        $this->call('vendor:publish', [ '--tag' => 'config' ]);
40
+        $this->config = new Repository($this->laravel[ 'config' ]->get('sleeping_owl'));
41 41
 
42 42
         $this->files = $files;
43 43
 
Please login to merge, or discard this patch.
src/Console/Installation/PublishAssets.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,6 +16,6 @@
 block discarded – undo
16 16
      */
17 17
     public function install()
18 18
     {
19
-        $this->command->call('vendor:publish', ['--tag' => 'assets', '--force']);
19
+        $this->command->call('vendor:publish', [ '--tag' => 'assets', '--force' ]);
20 20
     }
21 21
 }
Please login to merge, or discard this patch.
src/Console/Commands/SectionMake.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@
 block discarded – undo
82 82
     protected function getArguments()
83 83
     {
84 84
         $arguments = parent::getArguments();
85
-        $arguments[] = ['model', InputArgument::REQUIRED, 'The name of the model class'];
85
+        $arguments[ ] = [ 'model', InputArgument::REQUIRED, 'The name of the model class' ];
86 86
 
87 87
         return $arguments;
88 88
     }
Please login to merge, or discard this patch.
src/Console/Commands/UpdateCommand.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -24,12 +24,12 @@
 block discarded – undo
24 24
         collect([
25 25
             Installation\PublishAssets::class,
26 26
         ])
27
-            ->map(function ($installer) {
27
+            ->map(function($installer) {
28 28
                 return new $installer($this, $this->config);
29 29
             })
30
-            ->filter(function ($installer) {
31
-                return $this->option('force') ? true : ! $installer->installed();
32
-            })->each(function ($installer) {
30
+            ->filter(function($installer) {
31
+                return $this->option('force') ? true : !$installer->installed();
32
+            })->each(function($installer) {
33 33
                 $installer->install();
34 34
                 $installer->showInfo();
35 35
             });
Please login to merge, or discard this patch.
src/Console/Commands/UserManagerCommand.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
     {
54 54
         $userClass = $this->getUserClass();
55 55
 
56
-        $headers = ['id', 'name', 'email'];
56
+        $headers = [ 'id', 'name', 'email' ];
57 57
         $users = $userClass::get($headers);
58 58
 
59 59
         $this->table($headers, $users);
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
             return;
70 70
         }
71 71
 
72
-        if (! is_null($userClass::where('email', $email)->first())) {
72
+        if (!is_null($userClass::where('email', $email)->first())) {
73 73
             $this->error("User with same email [{$email}] exists.");
74 74
 
75 75
             return;
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
         }
121 121
 
122 122
         $confirm = $this->confirm("Are you sure want to delete user with id [{$id}]?", false);
123
-        if (! $confirm) {
123
+        if (!$confirm) {
124 124
             return;
125 125
         }
126 126
 
@@ -173,9 +173,9 @@  discard block
 block discarded – undo
173 173
     protected function getOptions()
174 174
     {
175 175
         return [
176
-            ['create', 'c', InputOption::VALUE_NONE, 'Create new user.'],
177
-            ['delete', 'd', InputOption::VALUE_NONE, 'Delete user.'],
178
-            ['password', 'p', InputOption::VALUE_NONE, 'Change user password.'],
176
+            [ 'create', 'c', InputOption::VALUE_NONE, 'Create new user.' ],
177
+            [ 'delete', 'd', InputOption::VALUE_NONE, 'Delete user.' ],
178
+            [ 'password', 'p', InputOption::VALUE_NONE, 'Change user password.' ],
179 179
         ];
180 180
     }
181 181
 }
Please login to merge, or discard this patch.
src/Console/Commands/SectionGenerate.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,14 +31,14 @@
 block discarded – undo
31 31
             'App\Providers\AdminSectionsServiceProvider'
32 32
         );
33 33
 
34
-        if (! $provider) {
34
+        if (!$provider) {
35 35
             $this->error('[App\Providers\AdminSectionsServiceProvider] not found');
36 36
 
37 37
             return;
38 38
         }
39 39
 
40 40
         foreach ($provider->sections() as $model => $section) {
41
-            $this->callSilent('sleepingowl:section:make', ['name' => $section, 'model' => $model]);
41
+            $this->callSilent('sleepingowl:section:make', [ 'name' => $section, 'model' => $model ]);
42 42
         }
43 43
 
44 44
         $this->info('Sections generated successfully!');
Please login to merge, or discard this patch.
src/Providers/AdminServiceProvider.php 1 patch
Spacing   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
 
28 28
     public function register()
29 29
     {
30
-        $this->app->singleton('sleeping_owl', function () {
30
+        $this->app->singleton('sleeping_owl', function() {
31 31
             return new Admin();
32 32
         });
33 33
 
@@ -37,23 +37,23 @@  discard block
 block discarded – undo
37 37
         $this->registerWysiwyg();
38 38
         $this->registerAliases();
39 39
 
40
-        $this->app->singleton(WidgetsRegistryInterface::class, function () {
40
+        $this->app->singleton(WidgetsRegistryInterface::class, function() {
41 41
             return new WidgetsRegistry($this->app);
42 42
         });
43 43
 
44
-        $this->app->booted(function () {
45
-            $this->app[WidgetsRegistryInterface::class]->placeWidgets(
46
-                $this->app[ViewFactory::class]
44
+        $this->app->booted(function() {
45
+            $this->app[ WidgetsRegistryInterface::class ]->placeWidgets(
46
+                $this->app[ ViewFactory::class ]
47 47
             );
48 48
         });
49 49
 
50
-        $this->app->booted(function () {
50
+        $this->app->booted(function() {
51 51
             $this->registerCustomRoutes();
52 52
             $this->registerDefaultRoutes();
53 53
             $this->registerNavigationFile();
54 54
         });
55 55
 
56
-        ModelConfigurationManager::setEventDispatcher($this->app['events']);
56
+        ModelConfigurationManager::setEventDispatcher($this->app[ 'events' ]);
57 57
     }
58 58
 
59 59
     /**
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
      */
64 64
     protected function getConfig($key)
65 65
     {
66
-        return $this->app['config']->get('sleeping_owl.'.$key);
66
+        return $this->app[ 'config' ]->get('sleeping_owl.'.$key);
67 67
     }
68 68
 
69 69
     /**
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
      */
74 74
     protected function getBootstrapPath($path = null)
75 75
     {
76
-        if (! is_null($path)) {
76
+        if (!is_null($path)) {
77 77
             $path = DIRECTORY_SEPARATOR.$path;
78 78
         }
79 79
 
@@ -84,14 +84,14 @@  discard block
 block discarded – undo
84 84
     {
85 85
         $this->registerMessages();
86 86
 
87
-        $this->app->singleton('sleeping_owl.template', function () {
88
-            return $this->app['sleeping_owl']->template();
87
+        $this->app->singleton('sleeping_owl.template', function() {
88
+            return $this->app[ 'sleeping_owl' ]->template();
89 89
         });
90 90
 
91 91
         $this->registerBootstrap();
92 92
 
93
-        $this->registerRoutes(function (Router $route) {
94
-            $route->group(['as' => 'admin.', 'namespace' => 'SleepingOwl\Admin\Http\Controllers'], function ($route) {
93
+        $this->registerRoutes(function(Router $route) {
94
+            $route->group([ 'as' => 'admin.', 'namespace' => 'SleepingOwl\Admin\Http\Controllers' ], function($route) {
95 95
                 $route->get('assets/admin.scripts', [
96 96
                     'as'   => 'scripts',
97 97
                     'uses' => 'AdminController@getScripts',
@@ -109,10 +109,10 @@  discard block
 block discarded – undo
109 109
             'warning' => \SleepingOwl\Admin\Widgets\Messages\WarningMessages::class,
110 110
         ];
111 111
         foreach ($messageTypes as $messageType) {
112
-            $this->app[WidgetsRegistryInterface::class]->registerWidget($messageType);
112
+            $this->app[ WidgetsRegistryInterface::class ]->registerWidget($messageType);
113 113
         }
114 114
 
115
-        $this->app->singleton('sleeping_owl.message', function () use ($messageTypes) {
115
+        $this->app->singleton('sleeping_owl.message', function() use ($messageTypes) {
116 116
             return new \SleepingOwl\Admin\Widgets\Messages\MessageStack($messageTypes);
117 117
         });
118 118
     }
@@ -126,14 +126,14 @@  discard block
 block discarded – undo
126 126
         $this->app->bind(\KodiComponents\Navigation\Contracts\PageInterface::class, \SleepingOwl\Admin\Navigation\Page::class);
127 127
         $this->app->bind(\KodiComponents\Navigation\Contracts\BadgeInterface::class, \SleepingOwl\Admin\Navigation\Badge::class);
128 128
 
129
-        $this->app->singleton('sleeping_owl.navigation', function () {
129
+        $this->app->singleton('sleeping_owl.navigation', function() {
130 130
             return new \SleepingOwl\Admin\Navigation();
131 131
         });
132 132
     }
133 133
 
134 134
     protected function registerWysiwyg()
135 135
     {
136
-        $this->app->singleton('sleeping_owl.wysiwyg', function () {
136
+        $this->app->singleton('sleeping_owl.wysiwyg', function() {
137 137
             return new \SleepingOwl\Admin\Wysiwyg\Manager();
138 138
         });
139 139
     }
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
     {
146 146
         $directory = $this->getBootstrapPath();
147 147
 
148
-        if (! is_dir($directory)) {
148
+        if (!is_dir($directory)) {
149 149
             return;
150 150
         }
151 151
 
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
             ->notName('routes.php')
156 156
             ->notName('navigation.php')
157 157
             ->in($directory)
158
-            ->sort(function ($a) {
158
+            ->sort(function($a) {
159 159
                 return $a->getFilename() != 'bootstrap.php';
160 160
             });
161 161
 
@@ -166,13 +166,13 @@  discard block
 block discarded – undo
166 166
 
167 167
     protected function registerAliases()
168 168
     {
169
-        AliasLoader::getInstance(config('sleeping_owl.aliases', []));
169
+        AliasLoader::getInstance(config('sleeping_owl.aliases', [ ]));
170 170
     }
171 171
 
172 172
     protected function registerCustomRoutes()
173 173
     {
174 174
         if (file_exists($file = $this->getBootstrapPath('routes.php'))) {
175
-            $this->registerRoutes(function (Router $route) use ($file) {
175
+            $this->registerRoutes(function(Router $route) use ($file) {
176 176
                 require $file;
177 177
             });
178 178
         }
@@ -180,15 +180,15 @@  discard block
 block discarded – undo
180 180
 
181 181
     protected function registerDefaultRoutes()
182 182
     {
183
-        $this->registerRoutes(function (Router $router) {
183
+        $this->registerRoutes(function(Router $router) {
184 184
             $router->pattern('adminModelId', '[a-zA-Z0-9_-]+');
185 185
 
186
-            $aliases = $this->app['sleeping_owl']->modelAliases();
186
+            $aliases = $this->app[ 'sleeping_owl' ]->modelAliases();
187 187
 
188 188
             if (count($aliases) > 0) {
189 189
                 $router->pattern('adminModel', implode('|', $aliases));
190 190
 
191
-                $this->app['router']->bind('adminModel', function ($model, \Illuminate\Routing\Route $route) use ($aliases) {
191
+                $this->app[ 'router' ]->bind('adminModel', function($model, \Illuminate\Routing\Route $route) use ($aliases) {
192 192
                     $class = array_search($model, $aliases);
193 193
 
194 194
                     if ($class === false) {
@@ -196,7 +196,7 @@  discard block
 block discarded – undo
196 196
                     }
197 197
 
198 198
                     /** @var ModelConfiguration $model */
199
-                    $model = $this->app['sleeping_owl']->getModel($class);
199
+                    $model = $this->app[ 'sleeping_owl' ]->getModel($class);
200 200
 
201 201
                     if ($model->hasCustomControllerClass() && $route->getActionName() !== 'Closure') {
202 202
                         list($controller, $action) = explode('@', $route->getActionName(), 2);
@@ -225,10 +225,10 @@  discard block
 block discarded – undo
225 225
      */
226 226
     protected function registerRoutes(\Closure $callback)
227 227
     {
228
-        $this->app['router']->group([
228
+        $this->app[ 'router' ]->group([
229 229
             'prefix' => $this->getConfig('url_prefix'),
230 230
             'middleware' => $this->getConfig('middleware'),
231
-        ], function ($route) use ($callback) {
231
+        ], function($route) use ($callback) {
232 232
             call_user_func($callback, $route);
233 233
         });
234 234
     }
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
             $items = include $navigation;
240 240
 
241 241
             if (is_array($items)) {
242
-                $this->app['sleeping_owl.navigation']->setFromArray($items);
242
+                $this->app[ 'sleeping_owl.navigation' ]->setFromArray($items);
243 243
             }
244 244
         }
245 245
     }
Please login to merge, or discard this patch.
src/Http/routes.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-$router->group(['as' => 'admin.', 'namespace' => 'SleepingOwl\Admin\Http\Controllers'], function ($router) {
4
-    if (! $router->has('admin.dashboard')) {
5
-        $router->get('', ['as' => 'dashboard', 'uses' => 'AdminController@getDashboard']);
3
+$router->group([ 'as' => 'admin.', 'namespace' => 'SleepingOwl\Admin\Http\Controllers' ], function($router) {
4
+    if (!$router->has('admin.dashboard')) {
5
+        $router->get('', [ 'as' => 'dashboard', 'uses' => 'AdminController@getDashboard' ]);
6 6
     }
7 7
 
8 8
     $router->get('{adminModel}', [
Please login to merge, or discard this patch.