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
Pull Request — master (#30)
by Mario
09:30
created
bundle/Form/Type/FieldType/FieldValueTransformer.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,8 +52,7 @@
 block discarded – undo
52 52
         }
53 53
 
54 54
         $hash = is_array($value['identifiers']) ?
55
-            $value['identifiers'] :
56
-            [$value['identifiers']];
55
+            $value['identifiers'] : [$value['identifiers']];
57 56
 
58 57
         return $this->fieldType->fromHash($hash);
59 58
     }
Please login to merge, or discard this patch.
EnhancedSelection/EnhancedSelectionStorage/Gateway/DoctrineStorage.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,8 +69,8 @@
 block discarded – undo
69 69
     /**
70 70
      * Returns the data for the given $fieldId and $versionNo.
71 71
      *
72
-     * @param mixed $fieldId
73
-     * @param mixed $versionNo
72
+     * @param integer $fieldId
73
+     * @param integer $versionNo
74 74
      *
75 75
      * @return array
76 76
      */
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
94 94
         $rows = $statement->fetchAll(FetchMode::ASSOCIATIVE);
95 95
 
96 96
         return array_map(
97
-            static function (array $row) {
97
+            static function(array $row) {
98 98
                 return $row['identifier'];
99 99
             },
100 100
             $rows
Please login to merge, or discard this patch.