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
Branch feature/normalise_config_files... (7ea4db)
by Marc
03:05
created
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.
src/BusinessCase/Comparison/AbstractJobComparisionBusinessCase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -219,7 +219,7 @@
 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.
src/Component/DependencyInjection/Loader/YamChapiConfigLoader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@
 block discarded – undo
101 101
             }
102 102
 
103 103
             if (!$this->container->hasExtension($namespace)) {
104
-                $extensionNamespaces = array_filter(array_map(function ($ext) { return $ext->getAlias(); }, $this->container->getExtensions()));
104
+                $extensionNamespaces = array_filter(array_map(function($ext) { return $ext->getAlias(); }, $this->container->getExtensions()));
105 105
                 throw new InvalidArgumentException(sprintf(
106 106
                     'There is no extension able to load the configuration for "%s" (in %s). Looked for namespace "%s", found %s',
107 107
                     $namespace,
Please login to merge, or discard this patch.
src/Component/Config/ChapiConfig.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -134,7 +134,7 @@
 block discarded – undo
134 134
      *
135 135
      * @see http://php.net/manual/de/function.array-merge-recursive.php
136 136
      */
137
-    private static function array_merge_recursive_distinct ( array &$array1, array &$array2 )
137
+    private static function array_merge_recursive_distinct(array &$array1, array &$array2)
138 138
     {
139 139
         $merged = $array1;
140 140
 
Please login to merge, or discard this patch.