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 ( 26150f...c9d951 )
by Miguel A.
02:36
created
src/IniFile.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
         if ($this->hasSection($section->getName()))
90 90
         {
91 91
             throw new InvalidDataException(sprintf('Section "%s" already exists!',
92
-                                                   $section->getName()));
92
+                                                    $section->getName()));
93 93
         }
94 94
 
95 95
         if ($section->hasParent())
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
             if (!isset($this->sections[$section->getParent()->getName()]))
98 98
             {
99 99
                 throw new InvalidDataException(sprintf('Parent section "%s" does not exists!',
100
-                                                       $section->getParent()->getName()));
100
+                                                        $section->getParent()->getName()));
101 101
             }
102 102
         }
103 103
 
Please login to merge, or discard this patch.