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 ( 8aa0b4...534582 )
by
unknown
03:02
created
src/Workflow/Composer/Base.php 1 patch
Upper-Lower-Casing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
                     if ($requiredVersion !== $version) {
148 148
                         $this->assertPackageAllowed($package);
149 149
                         if (!$package->git) {
150
-                            throw new Exception("Package {$package->name} required to be installed from source");
150
+                            throw new Exception("package {$package->name} required to be installed from source");
151 151
                         }
152 152
                         if ($autoFix) {
153 153
                             $fix = true;
@@ -483,7 +483,7 @@  discard block
 block discarded – undo
483 483
     protected function assertPackageAllowed($package)
484 484
     {
485 485
         if (!$this->isPackageAllowed($package)) {
486
-            throw new Exception("Package {$package->name} is not in white list");
486
+            throw new Exception("package {$package->name} is not in white list");
487 487
         }
488 488
     }
489 489
 
Please login to merge, or discard this patch.
src/Service/Config.php 1 patch
Upper-Lower-Casing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
     {
49 49
         $absPath = stream_resolve_include_path($path);
50 50
         if ($absPath === false) {
51
-            throw new Exception("File $path could not be found");
51
+            throw new Exception("file $path could not be found");
52 52
         }
53 53
         include $absPath;
54 54
     }
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
     {
77 77
         if ($job) {
78 78
             if (!array_key_exists($job, $this['jobs'])) {
79
-                throw new Exception("Job $job is not configured");
79
+                throw new Exception("job $job is not configured");
80 80
             }
81 81
             return $this['jobs'][$job];
82 82
         }
Please login to merge, or discard this patch.