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 ( bfef7d...a6590b )
by Marc
03:45
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/JobValidator/PropertyValidator/AbstractPropertyValidator.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,6 @@
 block discarded – undo
10 10
 namespace Chapi\Service\JobValidator\PropertyValidator;
11 11
 
12 12
 
13
-use Chapi\Entity\Chronos\JobEntity;
14 13
 use Chapi\Entity\JobEntityInterface;
15 14
 use Chapi\Service\JobValidator\PropertyValidatorInterface;
16 15
 
Please login to merge, or discard this patch.
src/Service/JobRepository/JobRepository.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -99,10 +99,12 @@
 block discarded – undo
99 99
     {
100 100
         if ($this->oRepositoryBridge->addJob($oJobEntity))
101 101
         {
102
-            if (!is_null($this->oJobCollection)) // if no collection inited the new job will init by chronos request
102
+            if (!is_null($this->oJobCollection)) {
103
+                // if no collection inited the new job will init by chronos request
103 104
             {
104 105
                 $this->oJobCollection->offsetSet($oJobEntity->getKey(), $oJobEntity);
105 106
             }
107
+            }
106 108
 
107 109
             return true;
108 110
         }
Please login to merge, or discard this patch.
src/Commands/AbstractCommand.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -116,12 +116,14 @@
 block discarded – undo
116 116
         if (
117 117
             !file_exists($this->getHomeDir() . DIRECTORY_SEPARATOR . 'parameters.yml')
118 118
             && !file_exists($this->getWorkingDir() . DIRECTORY_SEPARATOR . '.chapiconfig')
119
-        ) // one file have to exist
119
+        ) {
120
+            // one file have to exist
120 121
         {
121 122
             $this->oOutput->writeln(sprintf(
122 123
                 '<error>%s</error>',
123 124
                 'No parameter file found. Please run "configure" command for initial setup or add a local `.chapiconfig` to your working directory.'
124 125
             ));
126
+        }
125 127
             return false;
126 128
         }
127 129
 
Please login to merge, or discard this patch.
src/BusinessCase/JobManagement/MarathonStoreJobBusinessCase.php 2 patches
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.
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/Component/Http/HttpGuzzlClient.php 1 patch
Braces   +6 added lines, -12 removed lines patch added patch discarded remove patch
@@ -59,48 +59,42 @@
 block discarded – undo
59 59
         {
60 60
             $_oResponse = $this->oGuzzelClient->request('GET', $sUrl, $_aRequestOptions);
61 61
             return new HttpGuzzlResponse($_oResponse);
62
-        }
63
-        catch (ClientException $oException) // 400 level errors
62
+        } catch (ClientException $oException) // 400 level errors
64 63
         {
65 64
             throw new HttpConnectionException(
66 65
                 sprintf('Client error: Calling %s returned %d', $this->oGuzzelClient->getConfig('base_uri') . $sUrl, $oException->getCode()),
67 66
                 $oException->getCode(),
68 67
                 $oException
69 68
             );
70
-        }
71
-        catch (ServerException $oException) // 500 level errors
69
+        } catch (ServerException $oException) // 500 level errors
72 70
         {
73 71
             throw new HttpConnectionException(
74 72
                 sprintf('Server error: Calling %s returned %d', $this->oGuzzelClient->getConfig('base_uri') . $sUrl, $oException->getCode()),
75 73
                 $oException->getCode(),
76 74
                 $oException
77 75
             );
78
-        }
79
-        catch (TooManyRedirectsException $oException) // too many redirects to follow
76
+        } catch (TooManyRedirectsException $oException) // too many redirects to follow
80 77
         {
81 78
             throw new HttpConnectionException(
82 79
                 sprintf('Request to %s failed due to too many redirects', $this->oGuzzelClient->getConfig('base_uri') . $sUrl),
83 80
                 HttpConnectionException::ERROR_CODE_TOO_MANY_REDIRECT_EXCEPTION,
84 81
                 $oException
85 82
             );
86
-        }
87
-        catch (ConnectException $oException) // networking error
83
+        } catch (ConnectException $oException) // networking error
88 84
         {
89 85
             throw new HttpConnectionException(
90 86
                 sprintf('Cannot connect to %s due to some networking error', $this->oGuzzelClient->getConfig('base_uri') . $sUrl),
91 87
                 HttpConnectionException::ERROR_CODE_CONNECT_EXCEPTION,
92 88
                 $oException
93 89
             );
94
-        }
95
-        catch (RequestException $oException) // networking error (connection timeout, DNS errors, etc.)
90
+        } catch (RequestException $oException) // networking error (connection timeout, DNS errors, etc.)
96 91
         {
97 92
             throw new HttpConnectionException(
98 93
                 sprintf('Cannot connect to %s due to networking error', $this->oGuzzelClient->getConfig('base_uri') . $sUrl),
99 94
                 HttpConnectionException::ERROR_CODE_REQUEST_EXCEPTION,
100 95
                 $oException
101 96
             );
102
-        }
103
-        catch (\Exception $oException)
97
+        } catch (\Exception $oException)
104 98
         {
105 99
             throw new HttpConnectionException(
106 100
                 sprintf('Can\'t get response from "%s"', $this->oGuzzelClient->getConfig('base_uri') . $sUrl),
Please login to merge, or discard this patch.
src/BusinessCase/Comparison/MarathonJobComparisonBusinessCase.php 1 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.