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 ( d7595a...b11286 )
by Bruno
02:27
created
YumlMetadataGrapher/StringGenerator/StringGeneratorHelper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
     public function getClassText($className, $fields)
15 15
     {
16 16
         $classText = '[' . str_replace('\\', '.', $className);
17
-        $classText .= !empty($fields)? '|' . implode(';', $fields) : '';
17
+        $classText .= !empty($fields) ? '|' . implode(';', $fields) : '';
18 18
         $classText .= ']';
19 19
 
20 20
         return $classText;
@@ -95,6 +95,6 @@  discard block
 block discarded – undo
95 95
         } elseif ($classCount === 1) {
96 96
             return '1';
97 97
         }
98
-        throw new \Exception('Impossible class count value ' .  $classCount);
98
+        throw new \Exception('Impossible class count value ' . $classCount);
99 99
     }
100 100
 }
Please login to merge, or discard this patch.
Onurb/Doctrine/ORMMetadataGrapher/YumlMetadataGrapher/StringGenerator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
      */
60 60
     public function getClassString(ClassMetadata $class)
61 61
     {
62
-        $className    = $class->getName();
62
+        $className = $class->getName();
63 63
 
64 64
         if (!isset($this->classStrings[$className])) {
65 65
             $this->associationLogger->visitAssociation($className);
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
                 continue;
137 137
             }
138 138
 
139
-            $fields[] = $class->isIdentifier($fieldName)? '+' . $fieldName : $fieldName;
139
+            $fields[] = $class->isIdentifier($fieldName) ? '+' . $fieldName : $fieldName;
140 140
         }
141 141
 
142 142
         return $fields;
Please login to merge, or discard this patch.