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 ( 541108...5e194b )
by Bruno
02:29
created
YumlMetadataGrapher/StringGenerator/FieldGeneratorHelper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
      */
32 32
     private function getFieldLength($fullField)
33 33
     {
34
-        return $fullField['type'] === 'string' && isset($fullField['length']) ? ' (' . $fullField['length'] .')' : '';
34
+        return $fullField['type'] === 'string' && isset($fullField['length']) ? ' (' . $fullField['length'] . ')' : '';
35 35
     }
36 36
 
37 37
     /**
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
     private function getDecimalPrecision($fullField)
55 55
     {
56 56
         if (isset($fullField['precision']) && isset($fullField['scale'])) {
57
-            return ' ('. $fullField['precision'] . ' - ' . $fullField['scale'] . ')';
57
+            return ' (' . $fullField['precision'] . ' - ' . $fullField['scale'] . ')';
58 58
         }
59 59
 
60 60
         return '';
Please login to merge, or discard this patch.