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 ( b3be51...b8afeb )
by Bruno
02:43
created
lib/Doctrine/ORM/MetadataGrapher/YUMLMetadataGrapher.php 2 patches
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.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -300,7 +300,7 @@
 block discarded – undo
300 300
      * @return string
301 301
      */
302 302
     private function makeDoubleClassString(ClassMetadata $class1, ClassMetadata $class2, $bidirectional, $isInverse,
303
-                                           $class2SideName, $class2Count, $class1SideName, $class1Count)
303
+                                            $class2SideName, $class2Count, $class1SideName, $class1Count)
304 304
     {
305 305
         return $this->getClassString($class1)
306 306
         . ($bidirectional ? ($isInverse ? '<' : '<>') : '') // class2 side arrow
Please login to merge, or discard this patch.