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 (#101)
by Patrick
05:09
created
src/Component/DatePeriod/DatePeriodFactory.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,8 @@
 block discarded – undo
52 52
 
53 53
         if (!empty($timezone)) {
54 54
             $dateStart = new \DateTime(str_replace('Z', '', $iso8601Entity->startTime), new \DateTimeZone($timezone));
55
-        } else {
55
+        }
56
+        else {
56 57
             // todo: use a defined chronos time zone here?
57 58
             $dateStart = new \DateTime($iso8601Entity->startTime);
58 59
         }
Please login to merge, or discard this patch.
src/Commands/SchedulingViewCommand.php 1 patch
Braces   +10 added lines, -5 removed lines patch added patch discarded remove patch
@@ -237,10 +237,12 @@  discard block
 block discarded – undo
237 237
             if ($mod == 0) {
238 238
                 if ($printTime) {
239 239
                     $timeline .= $this->parseTimeLineStrMark($printJobStart, $printJobEnd, $hasToCloseFinalTag, $time->format('H>i'), $time->format('H:i'));
240
-                } else {
240
+                }
241
+                else {
241 242
                     $timeline .= $this->parseTimeLineStrMark($printJobStart, $printJobEnd, $hasToCloseFinalTag, str_repeat('>', 5), str_repeat($spacer, 5));
242 243
                 }
243
-            } else {
244
+            }
245
+            else {
244 246
                 $timeline .= $this->parseTimeLineStrMark($printJobStart, $printJobEnd, $hasToCloseFinalTag, '>', $spacer);
245 247
             }
246 248
         }
@@ -265,13 +267,16 @@  discard block
 block discarded – undo
265 267
     {
266 268
         if ($printJobStart && $printJobEnd) {
267 269
             $timelineSnippet = sprintf('<comment>%s</comment>', $startStopMark);
268
-        } elseif ($printJobStart) {
270
+        }
271
+        elseif ($printJobStart) {
269 272
             $timelineSnippet = sprintf('<comment>%s', $startStopMark);
270 273
             $bHasToCloseFinalTag = true;
271
-        } elseif ($printJobEnd) {
274
+        }
275
+        elseif ($printJobEnd) {
272 276
             $timelineSnippet = sprintf('%s</comment>', $startStopMark);
273 277
             $bHasToCloseFinalTag = false;
274
-        } else {
278
+        }
279
+        else {
275 280
             $timelineSnippet = $spacer;
276 281
         }
277 282
 
Please login to merge, or discard this patch.
src/Commands/ResetCommand.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,8 @@
 block discarded – undo
48 48
 
49 49
         if (JobUtils::isWildcard($jobNames)) {
50 50
             $jobIndexService->resetJobIndex();
51
-        } else {
51
+        }
52
+        else {
52 53
             $jobIndexService->removeJobs($jobNames);
53 54
         }
54 55
     }
Please login to merge, or discard this patch.
src/Commands/InfoCommand.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,8 @@
 block discarded – undo
53 53
                 $value = (!empty($value))
54 54
                     ? json_encode($value, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES)
55 55
                     : $emptyString;
56
-            } elseif (is_bool($value)) {
56
+            }
57
+            elseif (is_bool($value)) {
57 58
                 $value = (true === $value)
58 59
                     ? 'true'
59 60
                     : 'false';
Please login to merge, or discard this patch.
src/Entity/Chronos/ChronosJobEntity.php 1 patch
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -91,12 +91,14 @@  discard block
 block discarded – undo
91 91
                 if (property_exists($this, $key)) {
92 92
                     if ($key == 'container') {
93 93
                         $this->{$key} = new ContainerEntity($value);
94
-                    } else {
94
+                    }
95
+                    else {
95 96
                         $this->{$key} = $value;
96 97
                     }
97 98
                 }
98 99
             }
99
-        } else {
100
+        }
101
+        else {
100 102
             throw new \InvalidArgumentException(sprintf('Argument 1 passed to "%s" must be an array or object', __METHOD__));
101 103
         }
102 104
     }
@@ -141,7 +143,8 @@  discard block
 block discarded – undo
141 143
         $return = (array) $this;
142 144
         if (!empty($this->schedule)) {
143 145
             unset($return['parents']);
144
-        } else {
146
+        }
147
+        else {
145 148
             unset($return['schedule']);
146 149
             unset($return['scheduleTimeZone']);
147 150
         }
Please login to merge, or discard this patch.
src/Entity/Chronos/JobEntity/ContainerVolumeEntity.php 1 patch
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,8 @@
 block discarded – undo
22 22
                     $this->{$key} = $value;
23 23
                 }
24 24
             }
25
-        } else {
25
+        }
26
+        else {
26 27
             throw new \InvalidArgumentException(sprintf('Argument 1 passed to "%s" must be an array or object', __METHOD__));
27 28
         }
28 29
     }
Please login to merge, or discard this patch.
src/Entity/Chronos/JobEntity/ContainerEntity.php 1 patch
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,17 +21,20 @@
 block discarded – undo
21 21
                 if (property_exists($this, $key)) {
22 22
                     if ($key == 'type') {
23 23
                         $this->{$key} = strtolower($value);
24
-                    } elseif ($key == 'volumes') {
24
+                    }
25
+                    elseif ($key == 'volumes') {
25 26
                         foreach ($value as $valueVolume) {
26 27
                             $volume = new ContainerVolumeEntity($valueVolume);
27 28
                             $this->volumes[] = $volume;
28 29
                         }
29
-                    } else {
30
+                    }
31
+                    else {
30 32
                         $this->{$key} = $value;
31 33
                     }
32 34
                 }
33 35
             }
34
-        } else {
36
+        }
37
+        else {
35 38
             throw new \InvalidArgumentException(sprintf('Argument 1 passed to "%s" must be an array or object', __METHOD__));
36 39
         }
37 40
     }
Please login to merge, or discard this patch.
src/Entity/Marathon/AppEntity/PortDefinition.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
     public function jsonSerialize()
38 38
     {
39 39
         $return = (array) $this;
40
-        $return = array_filter($return, function ($value, $key) {
40
+        $return = array_filter($return, function($value, $key) {
41 41
             return !is_null($value);
42 42
         }, ARRAY_FILTER_USE_BOTH);
43 43
         return $return;
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,8 @@
 block discarded – undo
26 26
         MarathonEntityUtils::setAllPossibleProperties((array) $data, $this);
27 27
         if (isset($data['labels'])) {
28 28
             $this->labels = (object) $data['labels'];
29
-        } else {
29
+        }
30
+        else {
30 31
             $this->labels = (object) [];
31 32
         }
32 33
     }
Please login to merge, or discard this patch.
src/Entity/Marathon/MarathonAppEntity.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -149,7 +149,7 @@
 block discarded – undo
149 149
         $return = (array) $this;
150 150
         $return = array_filter(
151 151
             $return,
152
-            function ($value, $key) {
152
+            function($value, $key) {
153 153
                 return !is_null($value) || empty($value);
154 154
             },
155 155
             ARRAY_FILTER_USE_BOTH
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -114,7 +114,8 @@  discard block
 block discarded – undo
114 114
 
115 115
         if (isset($dataArray['upgradeStrategy'])) {
116 116
             $this->upgradeStrategy = new UpgradeStrategy((array) $dataArray['upgradeStrategy']);
117
-        } else {
117
+        }
118
+        else {
118 119
             $this->upgradeStrategy = new UpgradeStrategy();
119 120
         }
120 121
 
@@ -129,13 +130,15 @@  discard block
 block discarded – undo
129 130
             ksort($env);
130 131
 
131 132
             $this->env = (object) $env;
132
-        } else {
133
+        }
134
+        else {
133 135
             $this->env = (object) [];
134 136
         }
135 137
 
136 138
         if (isset($dataArray['labels'])) {
137 139
             $this->labels = (object) $dataArray['labels'];
138
-        } else {
140
+        }
141
+        else {
139 142
             $this->labels = (object) [];
140 143
         }
141 144
         MarathonEntityUtils::setPropertyIfExist($dataArray, $this, 'constraints');
Please login to merge, or discard this patch.