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 ( 83575f...b31e19 )
by
unknown
04:46
created
src/Fixture/Factory/VendorExampleFactory.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -109,8 +109,9 @@
 block discarded – undo
109 109
     private function createImage(string $imagePath): UploadedFile
110 110
     {
111 111
         $imagePath = $this->fileLocator === null ? $imagePath : $this->fileLocator->locate($imagePath);
112
-        if(is_array($imagePath) && count($imagePath) > 0)
113
-            $imagePath = $imagePath[0];
112
+        if(is_array($imagePath) && count($imagePath) > 0) {
113
+                    $imagePath = $imagePath[0];
114
+        }
114 115
 
115 116
         return new UploadedFile($imagePath, basename($imagePath));
116 117
     }
Please login to merge, or discard this patch.