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 (#94)
by Patrick
05:19 queued 02:46
created
src/BusinessCase/Comparison/ChronosJobComparisonBusinessCase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
     }
54 54
 
55 55
 
56
-    protected function preCompareModifications(JobEntityInterface &$localJob, JobEntityInterface &$remoteJob)
56
+    protected function preCompareModifications(JobEntityInterface & $localJob, JobEntityInterface & $remoteJob)
57 57
     {
58 58
         // no modification needed
59 59
         return;
Please login to merge, or discard this patch.
src/BusinessCase/Comparison/MarathonJobComparisonBusinessCase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
         $this->diffCompare = $diffCompare;
34 34
     }
35 35
 
36
-    protected function preCompareModifications(JobEntityInterface &$localJob, JobEntityInterface &$remoteJob)
36
+    protected function preCompareModifications(JobEntityInterface & $localJob, JobEntityInterface & $remoteJob)
37 37
     {
38 38
         if (!$localJob instanceof MarathonAppEntity ||
39 39
             !$remoteJob instanceof MarathonAppEntity
Please login to merge, or discard this patch.
src/BusinessCase/Comparison/AbstractJobComparisionBusinessCase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -207,7 +207,7 @@
 block discarded – undo
207 207
      * @param JobEntityInterface $remoteJob
208 208
      * @return null
209 209
      */
210
-    abstract protected function preCompareModifications(JobEntityInterface &$localJob, JobEntityInterface &$remoteJob);
210
+    abstract protected function preCompareModifications(JobEntityInterface & $localJob, JobEntityInterface & $remoteJob);
211 211
 
212 212
     /**
213 213
      * Gets entity for each system with defaults set
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/Entity/Marathon/MarathonAppEntity.php 1 patch
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.
src/Commands/DiffCommand.php 1 patch
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.