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
07:53
created
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/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.
src/Commands/DiffCommand.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
         /** @var JobComparisonInterface  $jobComparisonBusinessCase */
58 58
         $jobComparisonBusinessCase = $this->getContainer()->get(JobComparisonInterface::DIC_NAME);
59 59
 
60
-        $jobs = [ $jobName ];
60
+        $jobs = [$jobName];
61 61
 
62 62
         if (strpos($jobName, '*') !== false) {
63 63
             $jobs = $this->getJobsMatchingWildcard($jobName);
Please login to merge, or discard this patch.
Braces   +6 added lines, -3 removed lines patch added patch discarded remove patch
@@ -46,7 +46,8 @@  discard block
 block discarded – undo
46 46
 
47 47
         if (!empty($jobName)) {
48 48
             $changed = $this->printJobDiff($jobName);
49
-        } else {
49
+        }
50
+        else {
50 51
             $localJobUpdates = $jobComparisonBusinessCase->getLocalJobUpdates();
51 52
             if (!empty($localJobUpdates)) {
52 53
                 foreach ($localJobUpdates as $jobName) {
@@ -114,9 +115,11 @@  discard block
 block discarded – undo
114 115
 
115 116
                 if ($diffSign == '+') {
116 117
                     $this->output->writeln(sprintf("<info>%s\t%s: %s</info>", $diffSign, $property, ' ' . substr($diffLine, 1)));
117
-                } elseif ($diffSign == '-') {
118
+                }
119
+                elseif ($diffSign == '-') {
118 120
                     $this->output->writeln(sprintf("<fg=red>%s\t%s: %s</>", $diffSign, $property, ' ' . substr($diffLine, 1)));
119
-                } else {
121
+                }
122
+                else {
120 123
                     $this->output->writeln(sprintf(" \t%s: %s", $property, $diffLine));
121 124
                 }
122 125
             }
Please login to merge, or discard this patch.
src/Entity/Chronos/ChronosJobEntity.php 2 patches
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"]["unknown_fields"]);
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->unknown_fields;
171 171
                 unset($fields["unknown_fields"]);
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->unknown_fields;
179 179
             unset($fields["unknown_fields"]);
180 180
             $return["fetch"][] = $fields;
Please login to merge, or discard this patch.
Braces   +12 added lines, -6 removed lines patch added patch discarded remove patch
@@ -97,18 +97,22 @@  discard block
 block discarded – undo
97 97
                 if (property_exists($this, $key)) {
98 98
                     if ($key == 'container') {
99 99
                         $this->{$key} = new ContainerEntity($value);
100
-                    } else if ($key == 'fetch') {
100
+                    }
101
+                    else if ($key == 'fetch') {
101 102
                         foreach($value as $fetch) {
102 103
                             $this->{$key}[] = new FetchEntity($fetch);
103 104
                         }
104
-                    } else {
105
+                    }
106
+                    else {
105 107
                         $this->{$key} = $value;
106 108
                     }
107
-                } else {
109
+                }
110
+                else {
108 111
                     $this->unknown_fields[$key] = $value;
109 112
                 }
110 113
             }
111
-        } else {
114
+        }
115
+        else {
112 116
             throw new \InvalidArgumentException(sprintf('Argument 1 passed to "%s" must be an array or object', __METHOD__));
113 117
         }
114 118
     }
@@ -153,14 +157,16 @@  discard block
 block discarded – undo
153 157
         $return = (array) $this;
154 158
         if (!empty($this->schedule)) {
155 159
             unset($return['parents']);
156
-        } else {
160
+        }
161
+        else {
157 162
             unset($return['schedule']);
158 163
             unset($return['scheduleTimeZone']);
159 164
         }
160 165
 
161 166
         if (empty($this->container)) {
162 167
             unset($return['container']);
163
-        } else {
168
+        }
169
+        else {
164 170
             $return["container"] = (array) $this->container
165 171
                                    + (array) $this->container->unknown_fields;
166 172
             unset($return["container"]["unknown_fields"]);
Please login to merge, or discard this patch.
src/Entity/Chronos/JobEntity/ContainerEntity.php 1 patch
Braces   +8 added lines, -4 removed lines patch added patch discarded remove patch
@@ -21,19 +21,23 @@
 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
-                } else {
34
+                }
35
+                else {
33 36
                     $this->unknown_fields[$key] = $value;
34 37
                 }
35 38
             }
36
-        } else {
39
+        }
40
+        else {
37 41
             throw new \InvalidArgumentException(sprintf('Argument 1 passed to "%s" must be an array or object', __METHOD__));
38 42
         }
39 43
     }
Please login to merge, or discard this patch.
src/Entity/Chronos/JobEntity/ContainerVolumeEntity.php 1 patch
Braces   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,11 +20,13 @@
 block discarded – undo
20 20
             foreach ($jobData as $key => $value) {
21 21
                 if (property_exists($this, $key)) {
22 22
                     $this->{$key} = $value;
23
-                } else {
23
+                }
24
+                else {
24 25
                     $this->unknown_fields[$key] = $value;
25 26
                 }
26 27
             }
27
-        } else {
28
+        }
29
+        else {
28 30
             throw new \InvalidArgumentException(sprintf('Argument 1 passed to "%s" must be an array or object', __METHOD__));
29 31
         }
30 32
     }
Please login to merge, or discard this patch.