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
Branch master (ef9d77)
by Brad
06:18
created
Category
src/ClassFinder.php 1 patch
Spacing   +4 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 ////////////////////////////////////////////////////////////////////////////////
3 3
 // __________ __             ________                   __________
4 4
 // \______   \  |__ ______  /  _____/  ____ _____ ______\______   \ _______  ___
@@ -104,8 +104,7 @@  discard block
 block discarded – undo
104 104
     {
105 105
         if ($this->implements !== null || $this->extends != null)
106 106
         {
107
-            throw new Exception
108
-            (
107
+            throw new Exception(
109 108
                 'Can not set a custom filter and filter '.
110 109
                 'by `implements` or `extends`!'
111 110
             );
@@ -171,8 +170,7 @@  discard block
 block discarded – undo
171 170
      */
172 171
     protected function searchPsrMaps()
173 172
     {
174
-        $prefixes = array_merge
175
-        (
173
+        $prefixes = array_merge(
176 174
             $this->composer->getPrefixes(),
177 175
             $this->composer->getPrefixesPsr4()
178 176
         );
@@ -188,7 +186,7 @@  discard block
 block discarded – undo
188 186
 
189 187
             foreach ($foundSegments as $key => $segment)
190 188
             {
191
-                if ((string) $nsSegments[$key] !== (string) $segment)
189
+                if ((string)$nsSegments[$key] !== (string)$segment)
192 190
                 {
193 191
                     continue 2;
194 192
                 }
Please login to merge, or discard this patch.
src/IClassFinder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 ////////////////////////////////////////////////////////////////////////////////
3 3
 // __________ __             ________                   __________
4 4
 // \______   \  |__ ______  /  _____/  ____ _____ ______\______   \ _______  ___
Please login to merge, or discard this patch.