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 (#68)
by Bidesh
03:32
created
src/Entity/Marathon/MarathonEntityUtils.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
      */
28 28
     public static function setAllPossibleProperties($oData, $oTarget)
29 29
     {
30
-        foreach($oData as $attrName => $attrValue)
30
+        foreach ($oData as $attrName => $attrValue)
31 31
         {
32 32
             // dont set array or objects.
33 33
             // Because this would need further type information to properly set.
Please login to merge, or discard this patch.
src/Service/JobRepository/BridgeFileSystem.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
             $_sJobPath = $oJobEntity->getKey();
162 162
         }
163 163
 
164
-        return $this->sRepositoryDir . DIRECTORY_SEPARATOR . $_sJobPath . '.json';
164
+        return $this->sRepositoryDir.DIRECTORY_SEPARATOR.$_sJobPath.'.json';
165 165
     }
166 166
 
167 167
     /**
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
             throw new \RuntimeException(sprintf('Path "%s" is not valid', $sPath));
177 177
         }
178 178
 
179
-        $_aTemp = Glob::glob(rtrim($sPath, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR . '*');
179
+        $_aTemp = Glob::glob(rtrim($sPath, DIRECTORY_SEPARATOR).DIRECTORY_SEPARATOR.'*');
180 180
 
181 181
         foreach ($_aTemp as $_sPath)
182 182
         {
Please login to merge, or discard this patch.
src/Entity/Marathon/AppEntity/PortDefinition.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -23,12 +23,12 @@
 block discarded – undo
23 23
 
24 24
     public function __construct($aData = [])
25 25
     {
26
-        MarathonEntityUtils::setAllPossibleProperties((array)$aData, $this);
27
-        if(isset($aData['labels']))
26
+        MarathonEntityUtils::setAllPossibleProperties((array) $aData, $this);
27
+        if (isset($aData['labels']))
28 28
         {
29
-            $this->labels = (object)$aData['labels'];
29
+            $this->labels = (object) $aData['labels'];
30 30
         } else {
31
-            $this->labels = (object)[];
31
+            $this->labels = (object) [];
32 32
         }
33 33
 
34 34
     }
Please login to merge, or discard this patch.
src/Entity/Marathon/AppEntity/Container.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,14 +35,14 @@
 block discarded – undo
35 35
 
36 36
         if (isset($aData['docker']))
37 37
         {
38
-            $this->docker = new Docker((array)$aData['docker']);
38
+            $this->docker = new Docker((array) $aData['docker']);
39 39
         }
40 40
 
41 41
         if (isset($aData['volumes']))
42 42
         {
43 43
             foreach ($aData['volumes'] as $volume)
44 44
             {
45
-                $this->volumes[] = new ContainerVolume((array)$volume);
45
+                $this->volumes[] = new ContainerVolume((array) $volume);
46 46
             }
47 47
         }
48 48
 
Please login to merge, or discard this patch.
src/Entity/Marathon/AppEntity/Docker.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -39,17 +39,17 @@
 block discarded – undo
39 39
 
40 40
         if (isset($aData['portMappings']))
41 41
         {
42
-            foreach($aData['portMappings'] as $portMapping)
42
+            foreach ($aData['portMappings'] as $portMapping)
43 43
             {
44
-                $this->portMappings[] = new DockerPortMapping((array)$portMapping);
44
+                $this->portMappings[] = new DockerPortMapping((array) $portMapping);
45 45
             }
46 46
         }
47 47
 
48 48
         if (isset($aData['parameters']))
49 49
         {
50
-            foreach($aData['parameters'] as $parameter)
50
+            foreach ($aData['parameters'] as $parameter)
51 51
             {
52
-                $this->parameters[] = new DockerParameters((array)$parameter);
52
+                $this->parameters[] = new DockerParameters((array) $parameter);
53 53
             }
54 54
         }
55 55
 
Please login to merge, or discard this patch.
src/Entity/Marathon/AppEntity/HealthCheck.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,9 +41,9 @@
 block discarded – undo
41 41
     {
42 42
         MarathonEntityUtils::setAllPossibleProperties($aData, $this);
43 43
 
44
-        if(isset($aData['command']))
44
+        if (isset($aData['command']))
45 45
         {
46
-            $this->command = new HealthCheckCommand((array)$aData['command']);
46
+            $this->command = new HealthCheckCommand((array) $aData['command']);
47 47
         }
48 48
     }
49 49
 
Please login to merge, or discard this patch.
src/Entity/Marathon/AppEntity/IpAddress.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,13 +25,13 @@
 block discarded – undo
25 25
     {
26 26
         MarathonEntityUtils::setAllPossibleProperties($aData, $this);
27 27
 
28
-        if(isset($aData['groups']))
28
+        if (isset($aData['groups']))
29 29
         {
30 30
             $this->groups = $aData['groups'];
31 31
         }
32 32
         if (isset($aData['labels']))
33 33
         {
34
-            $this->labels = (object)$aData['labels'];
34
+            $this->labels = (object) $aData['labels'];
35 35
         }
36 36
     }
37 37
 }
38 38
\ No newline at end of file
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
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
         $this->oDiffCompare = $oDiffCompare;
38 38
     }
39 39
 
40
-    protected function preCompareModifications(JobEntityInterface &$oLocalJob, JobEntityInterface &$oRemoteJob)
40
+    protected function preCompareModifications(JobEntityInterface & $oLocalJob, JobEntityInterface & $oRemoteJob)
41 41
     {
42 42
         if (
43 43
             !$oLocalJob instanceof MarathonAppEntity ||
Please login to merge, or discard this patch.
src/BusinessCase/Comparison/ChronosJobComparisonBusinessCase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
     }
55 55
 
56 56
 
57
-    protected function preCompareModifications(JobEntityInterface &$oLocalJob, JobEntityInterface &$oRemoteJob)
57
+    protected function preCompareModifications(JobEntityInterface & $oLocalJob, JobEntityInterface & $oRemoteJob)
58 58
     {
59 59
         // no modification needed
60 60
         return;
Please login to merge, or discard this patch.