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 ( eb7034...336670 )
by
unknown
10:15
created
app/Console/Commands/PluginMakeCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
         $title = $this->getTitleInput();
59 59
         $path = app('xe.plugin')->getPluginsDir().'/'.$name;
60 60
 
61
-        if($this->checkEnv($path, $name, $namespace, $title) === false) {
61
+        if ($this->checkEnv($path, $name, $namespace, $title) === false) {
62 62
             return false;
63 63
         }
64 64
 
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
         }
103 103
 
104 104
         // check namespace
105
-        if(!str_contains($namespace, '\\')) {
105
+        if (!str_contains($namespace, '\\')) {
106 106
             $this->error('The namespace must have at least 1 delimiter(\\), use double backslash(\\\\) as delimiter');
107 107
             return false;
108 108
         }
@@ -421,7 +421,7 @@  discard block
 block discarded – undo
421 421
         $output = $this->output;
422 422
 
423 423
         $process->run(
424
-            function ($type, $line) use ($output) {
424
+            function($type, $line) use ($output) {
425 425
                 $output->write($line);
426 426
             }
427 427
         );
Please login to merge, or discard this patch.