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 ( 9567ee...c415c0 )
by Jose Luis
03:00
created
src/Providers/LaravelTacticianServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 
31 31
         // Register Command Generator
32 32
         $this->app->singleton(
33
-            'laravel-tactician.make.command', function ($app) {
33
+            'laravel-tactician.make.command', function($app) {
34 34
                 return new MakeTacticianCommandCommand($app['files']);
35 35
             }
36 36
         );
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
 
39 39
         // Register Handler Generator
40 40
         $this->app->singleton(
41
-            'laravel-tactician.make.handler', function ($app) {
41
+            'laravel-tactician.make.handler', function($app) {
42 42
                 return new MakeTacticianHandlerCommand($app['files']);
43 43
             }
44 44
         );
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 
47 47
         // Register Comman+Handler Generator Command
48 48
         $this->app->singleton(
49
-            'laravel-tactician.make.tactician', function () {
49
+            'laravel-tactician.make.tactician', function() {
50 50
                 return new MakeTacticianCommand();
51 51
             }
52 52
         );
Please login to merge, or discard this patch.