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.
Passed
Push — master ( dd1650...0aff50 )
by
unknown
05:37
created
src/Fixture/Factory/BannerExampleFactory.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -113,8 +113,9 @@
 block discarded – undo
113 113
     private function createImage(string $imagePath): UploadedFile
114 114
     {
115 115
         $imagePath = $this->fileLocator === null ? $imagePath : $this->fileLocator->locate($imagePath);
116
-        if(is_array($imagePath) && count($imagePath) > 0)
117
-            $imagePath = $imagePath[0];
116
+        if(is_array($imagePath) && count($imagePath) > 0) {
117
+                    $imagePath = $imagePath[0];
118
+        }
118 119
 
119 120
         return new UploadedFile($imagePath, basename($imagePath));
120 121
     }
Please login to merge, or discard this patch.