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 ( b8afeb...9bdd64 )
by Bruno
02:44
created
lib/Doctrine/ORM/MetadataGrapher/YUMLMetadataGrapher.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
      */
166 166
     private function getClassString(ClassMetadata $class)
167 167
     {
168
-        $className    = $class->getName();
168
+        $className = $class->getName();
169 169
         if (!isset($this->classStrings[$className])) {
170 170
             $this->visitAssociation($className);
171 171
 
@@ -207,8 +207,8 @@  discard block
 block discarded – undo
207 207
      */
208 208
     private function getClassByName($className)
209 209
     {
210
-        return isset($this->metadata[$className]) && !empty($this->metadata[$className])?
211
-            $this->metadata[$className]: null;
210
+        return isset($this->metadata[$className]) && !empty($this->metadata[$className]) ?
211
+            $this->metadata[$className] : null;
212 212
     }
213 213
 
214 214
     /**
Please login to merge, or discard this patch.