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
02:54
created
src/BusinessCase/JobManagement/MarathonStoreJobBusinessCase.php 4 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -133,6 +133,9 @@
 block discarded – undo
133 133
         return !(count($arr) == count(array_unique($arr)));
134 134
     }
135 135
 
136
+    /**
137
+     * @param integer $iImmediateChildren
138
+     */
136 139
     private function isDependencyCircular(MarathonAppEntity $oEntity, $iImmediateChildren, &$path=[])
137 140
     {
138 141
         // Invariant: path will not have duplicates for acyclic dependency tree
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
 
13 13
 
14 14
 use Chapi\BusinessCase\Comparison\JobComparisonInterface;
15
-use Chapi\Entity\JobEntityInterface;
16 15
 use Chapi\Entity\Marathon\MarathonAppEntity;
17 16
 use Chapi\Service\JobIndex\JobIndexServiceInterface;
18 17
 use Chapi\Service\JobRepository\JobRepositoryInterface;
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
             }
73 73
 
74 74
             // check if dependency is satisfied
75
-            if ( $_oJobEntityLocal->isDependencyJob())
75
+            if ($_oJobEntityLocal->isDependencyJob())
76 76
             {
77 77
                 try {
78 78
                     $circular = $this->isDependencyCircular($_oJobEntityLocal, count($_oJobEntityLocal->dependencies));
@@ -84,10 +84,10 @@  discard block
 block discarded – undo
84 84
                         return false;
85 85
                     }
86 86
                 }
87
-                catch(\Exception $e)
87
+                catch (\Exception $e)
88 88
                 {
89 89
                     $this->oLogger->error(sprintf(
90
-                        'Job %s cannot be added to remote : %s',$sAppId, $e->getMessage()
90
+                        'Job %s cannot be added to remote : %s', $sAppId, $e->getMessage()
91 91
                     ));
92 92
                     return false;
93 93
                 }
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
         return !(count($arr) == count(array_unique($arr)));
134 134
     }
135 135
 
136
-    private function isDependencyCircular(MarathonAppEntity $oEntity, $iImmediateChildren, &$path=[])
136
+    private function isDependencyCircular(MarathonAppEntity $oEntity, $iImmediateChildren, &$path = [])
137 137
     {
138 138
         // Invariant: path will not have duplicates for acyclic dependency tree
139 139
         if ($this->hasDuplicates($path))
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
             // for B intermediate Child will be 2.
187 187
             // when we process D, it will be reduced to 1 and with C to 0
188 188
             // then we will pop B to generate path [A, E] when we reach E.
189
-            $iImmediateChildren = $iImmediateChildren -1;
189
+            $iImmediateChildren = $iImmediateChildren - 1;
190 190
             if ($iImmediateChildren == 0)
191 191
             {
192 192
                 array_pop($path);
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -83,8 +83,7 @@
 block discarded – undo
83 83
                         ));
84 84
                         return false;
85 85
                     }
86
-                }
87
-                catch(\Exception $e)
86
+                } catch(\Exception $e)
88 87
                 {
89 88
                     $this->oLogger->error(sprintf(
90 89
                         'Job %s cannot be added to remote : %s',$sAppId, $e->getMessage()
Please login to merge, or discard this patch.
src/Service/JobRepository/BridgeFactory.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -12,8 +12,6 @@
 block discarded – undo
12 12
 
13 13
 use Chapi\Component\Cache\CacheInterface;
14 14
 use Chapi\Component\RemoteClients\ApiClientInterface;
15
-use Chapi\Entity\Chronos\ChronosJobEntity;
16
-use Chapi\Entity\Marathon\MarathonAppEntity;
17 15
 use Chapi\Service\JobValidator\JobValidatorServiceInterface;
18 16
 use Psr\Log\LoggerInterface;
19 17
 use Symfony\Component\Filesystem\Filesystem;
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/Entity/Marathon/MarathonAppEntity.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
     /**
34 34
      * @var PortDefinition[]
35 35
      */
36
-    public $portDefinitions =[];
36
+    public $portDefinitions = [];
37 37
 
38 38
     public $requirePorts = false;
39 39
 
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
     /**
52 52
      * @var array
53 53
      */
54
-    public $constraints  = [];
54
+    public $constraints = [];
55 55
 
56 56
 
57 57
     public $acceptedResourceRoles = [];
@@ -101,39 +101,39 @@  discard block
 block discarded – undo
101 101
 
102 102
         if (isset($aData['portDefinitions'])) {
103 103
             foreach ($aData['portDefinitions'] as $portDefinition) {
104
-                $this->portDefinitions[] = new PortDefinition((array)$portDefinition);
104
+                $this->portDefinitions[] = new PortDefinition((array) $portDefinition);
105 105
             }
106 106
         }
107 107
 
108 108
         if (isset($aData['container'])) {
109
-            $this->container = new Container((array)$aData['container']);
109
+            $this->container = new Container((array) $aData['container']);
110 110
         }
111 111
 
112 112
         if (isset($aData['healthChecks']))
113 113
         {
114
-            foreach($aData['healthChecks'] as $healthCheck)
114
+            foreach ($aData['healthChecks'] as $healthCheck)
115 115
             {
116
-                $this->healthChecks[] = new HealthCheck((array)$healthCheck);
116
+                $this->healthChecks[] = new HealthCheck((array) $healthCheck);
117 117
             }
118 118
         }
119 119
 
120 120
         if (isset($aData['upgradeStrategy']))
121 121
         {
122
-            $this->upgradeStrategy = new UpgradeStrategy((array)$aData['upgradeStrategy']);
122
+            $this->upgradeStrategy = new UpgradeStrategy((array) $aData['upgradeStrategy']);
123 123
         } else {
124 124
             $this->upgradeStrategy = new UpgradeStrategy();
125 125
         }
126 126
 
127 127
         if (isset($aData['ipAddress']))
128 128
         {
129
-            $this->ipAddress = new IpAddress((array)$aData['ipAddress']);
129
+            $this->ipAddress = new IpAddress((array) $aData['ipAddress']);
130 130
         }
131 131
 
132 132
         if (isset($aData['env']))
133 133
         {
134
-            $this->env =  (object) $aData['env'];
134
+            $this->env = (object) $aData['env'];
135 135
         } else {
136
-            $this->env = (object)[];
136
+            $this->env = (object) [];
137 137
         }
138 138
 
139 139
         if (isset($aData['labels']))
Please login to merge, or discard this patch.
src/BusinessCase/Comparison/AbstractJobComparisionBusinessCase.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
             $_aDifferences[$_sProperty] = $this->oDiffCompare->compare(
167 167
                 $_oRemoteEntity->{$_sProperty},
168 168
                 $_oLocalEntity->{$_sProperty}
169
-            ) ;
169
+            );
170 170
         }
171 171
 
172 172
         return $_aDifferences;
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
      * @param JobEntityInterface $oRemoteJob
220 220
      * @return null
221 221
      */
222
-    abstract protected function preCompareModifications(JobEntityInterface &$oLocalJob, JobEntityInterface &$oRemoteJob);
222
+    abstract protected function preCompareModifications(JobEntityInterface & $oLocalJob, JobEntityInterface & $oRemoteJob);
223 223
 
224 224
     /**
225 225
      * Gets entity for each system with defaults set
Please login to merge, or discard this patch.