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:22
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/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 1 patch
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.
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/Marathon/MarathonEntityUtils.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -70,9 +70,9 @@  discard block
 block discarded – undo
70 70
      */
71 71
     public static function convSortedObject() {
72 72
         return function($data) {
73
-            $a = (array)$data; // ksort is inplace, so we need a copy
73
+            $a = (array) $data; // ksort is inplace, so we need a copy
74 74
             ksort($a);
75
-            return (object)$a;
75
+            return (object) $a;
76 76
         };
77 77
     }
78 78
 
@@ -83,9 +83,9 @@  discard block
 block discarded – undo
83 83
     public static function convArrayOfClass($class) {
84 84
         return function($data) use ($class) {
85 85
             $return = [];
86
-            if($data !== null) {
86
+            if ($data !== null) {
87 87
                 foreach ($data as $item) {
88
-                    $return[] = new $class((array)$item);
88
+                    $return[] = new $class((array) $item);
89 89
                 }
90 90
             }
91 91
             return $return;
Please login to merge, or discard this patch.
src/Entity/Marathon/MarathonAppEntity.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -148,7 +148,7 @@
 block discarded – undo
148 148
         // delete empty fields
149 149
         $return = array_filter(
150 150
             $return,
151
-            function ($value, $key) {
151
+            function($value, $key) {
152 152
                 return !is_null($value) || empty($value);
153 153
             },
154 154
             ARRAY_FILTER_USE_BOTH // there is no ARRAY_FILTER_USE_VALUE
Please login to merge, or discard this patch.