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 ( c24ffa...360439 )
by Brian
03:11
created
src/Console/MakeProviderCommand.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
     protected function getArguments()
81 81
     {
82 82
         return [
83
-            ['name', InputArgument::REQUIRED, 'Name of the provider.'],
83
+            [ 'name', InputArgument::REQUIRED, 'Name of the provider.' ],
84 84
         ];
85 85
     }
86 86
 
@@ -92,14 +92,14 @@  discard block
 block discarded – undo
92 92
     protected function getOptions()
93 93
     {
94 94
         return [
95
-            ['spec', null, InputOption::VALUE_REQUIRED, 'The OAuth version that should be used.'],
96
-            ['author', null, InputOption::VALUE_REQUIRED, 'The name of the author.'],
97
-            ['email', null, InputOption::VALUE_REQUIRED, 'The email of the author.'],
98
-            ['scopes', null, InputOption::VALUE_OPTIONAL, 'The scopes to be requested.'],
99
-            ['request_token_url', null, InputOption::VALUE_OPTIONAL, 'The Request-Token-Endpoint URL.'],
100
-            ['authorize_url', null, InputOption::VALUE_OPTIONAL, 'The Authorization-Endpoint URL.'],
101
-            ['access_token_url', null, InputOption::VALUE_OPTIONAL, 'The Access-Token-Endpoint URL.'],
102
-            ['user_details_url', null, InputOption::VALUE_OPTIONAL, 'The User-Details-Endpoint URL.'],
95
+            [ 'spec', null, InputOption::VALUE_REQUIRED, 'The OAuth version that should be used.' ],
96
+            [ 'author', null, InputOption::VALUE_REQUIRED, 'The name of the author.' ],
97
+            [ 'email', null, InputOption::VALUE_REQUIRED, 'The email of the author.' ],
98
+            [ 'scopes', null, InputOption::VALUE_OPTIONAL, 'The scopes to be requested.' ],
99
+            [ 'request_token_url', null, InputOption::VALUE_OPTIONAL, 'The Request-Token-Endpoint URL.' ],
100
+            [ 'authorize_url', null, InputOption::VALUE_OPTIONAL, 'The Authorization-Endpoint URL.' ],
101
+            [ 'access_token_url', null, InputOption::VALUE_OPTIONAL, 'The Access-Token-Endpoint URL.' ],
102
+            [ 'user_details_url', null, InputOption::VALUE_OPTIONAL, 'The User-Details-Endpoint URL.' ],
103 103
         ];
104 104
     }
105 105
 }
Please login to merge, or discard this patch.