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
Push — master ( a6590b...26125c )
by Marc
03:09
created
src/Service/JobValidator/PropertyValidator/Epsilon.php 1 patch
Braces   +4 added lines, -3 removed lines patch added patch discarded remove patch
@@ -57,9 +57,11 @@  discard block
 block discarded – undo
57 57
                 $_oDateIntervalEpsilon = new \DateInterval($oJobEntity->epsilon);
58 58
                 $_iIntervalEpsilon = (int) $_oDateIntervalEpsilon->format('%Y%M%D%H%I%S');
59 59
 
60
-                if ($_iIntervalEpsilon > 30) // if epsilon > "PT30S"
60
+                if ($_iIntervalEpsilon > 30) {
61
+                    // if epsilon > "PT30S"
61 62
                 {
62 63
                     $_oIso8601Entity = $this->oDatePeriodFactory->createIso8601Entity($oJobEntity->schedule);
64
+                }
63 65
 
64 66
                     $_oDateIntervalScheduling = new \DateInterval($_oIso8601Entity->sInterval);
65 67
                     $_iIntervalScheduling = (int) $_oDateIntervalScheduling->format('%Y%M%D%H%I%S');
@@ -69,8 +71,7 @@  discard block
 block discarded – undo
69 71
 
70 72
                 // if epsilon is less or equal than 30sec the not empty check is enough
71 73
                 return true;
72
-            }
73
-            catch (\Exception $_oException)
74
+            } catch (\Exception $_oException)
74 75
             {
75 76
                 // can't init \DateInterval instance
76 77
                 return false;
Please login to merge, or discard this patch.
src/Service/JobValidator/PropertyValidator/Schedule.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -62,8 +62,7 @@
 block discarded – undo
62 62
             {
63 63
                 $_oDataPeriod = $this->oDatePeriodFactory->createDatePeriod($oJobEntity->schedule, $oJobEntity->scheduleTimeZone);
64 64
                 return (false !== $_oDataPeriod);
65
-            }
66
-            catch (\Exception $oException)
65
+            } catch (\Exception $oException)
67 66
             {
68 67
                 // invalid: Iso8601 is not valid and/or DatePeriodFactory is able to create a valid DatePeriod
69 68
             }
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/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 2 patches
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.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -13,9 +13,7 @@
 block discarded – undo
13 13
 
14 14
 use Chapi\Component\Comparison\DiffCompareInterface;
15 15
 use Chapi\Entity\Chronos\ChronosJobEntity;
16
-use Chapi\Entity\Chronos\JobCollection;
17 16
 use Chapi\Entity\JobEntityInterface;
18
-use Chapi\Entity\Marathon\AppEntity\PortDefinition;
19 17
 use Chapi\Entity\Marathon\MarathonAppEntity;
20 18
 use Chapi\Service\JobRepository\JobRepositoryInterface;
21 19
 
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.
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.