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 (#104)
by
unknown
03:25
created
src/Entity/Chronos/ChronosJobEntity.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
                     if ($key == 'container') {
99 99
                         $this->{$key} = new ContainerEntity($value);
100 100
                     } else if ($key == 'fetch') {
101
-                        foreach($value as $fetch) {
101
+                        foreach ($value as $fetch) {
102 102
                             $this->{$key}[] = new FetchEntity($fetch);
103 103
                         }
104 104
                     } else {
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
             unset($return['container']['unknownFields']);
167 167
 
168 168
             $return['container']['volumes'] = [];
169
-            foreach($this->container->volumes as $volume) {
169
+            foreach ($this->container->volumes as $volume) {
170 170
                 $fields = (array) $volume + (array) $volume->unknownFields;
171 171
                 unset($fields['unknownFields']);
172 172
                 $return['container']['volumes'][] = $fields;
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
         }
175 175
 
176 176
         $return['fetch'] = [];
177
-        foreach($this->fetch as $fetch) {
177
+        foreach ($this->fetch as $fetch) {
178 178
             $fields = (array) $fetch + (array) $fetch->unknownFields;
179 179
             unset($fields['unknownFields']);
180 180
             $return['fetch'][] = $fields;
Please login to merge, or discard this patch.