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 ( 8c76e3...58ca15 )
by Christian
04:11
created
src/Workflow/Composer/Diagnose.php 1 patch
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
             if (substr($method, 0, 5) === 'check' && $method[5] === strtoupper($method[5])) {
59 59
                 $check = substr($method, 5);
60 60
                 $this->checks[] = $check;
61
-                if (method_exists($this, 'fix' . $check)) {
61
+                if (method_exists($this, 'fix'.$check)) {
62 62
                     $this->fixes[] = $check;
63 63
                 }
64 64
             }
@@ -68,12 +68,12 @@  discard block
 block discarded – undo
68 68
             'check' => array(
69 69
                 'type' => 'array',
70 70
                 'option' => true,
71
-                'label' => 'Only execute these checks - available checks are ' . implode(', ', $this->checks),
71
+                'label' => 'Only execute these checks - available checks are '.implode(', ', $this->checks),
72 72
             ),
73 73
             'fix' => array(
74 74
                 'type' => 'boolean|array',
75 75
                 'option' => true,
76
-                'label' => 'Enable fixes and optionally reduce to certain fixes - available fixes are ' . implode(', ', $this->fixes),
76
+                'label' => 'Enable fixes and optionally reduce to certain fixes - available fixes are '.implode(', ', $this->fixes),
77 77
             ),
78 78
         ) + parent::configureVariables();
79 79
     }
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
     public function assemble()
87 87
     {
88 88
         $this->callback(
89
-            function () {
89
+            function() {
90 90
                 $fix = $this->get('fix');
91 91
                 $fixes = ($fix === true) ? $this->fixes : (array) $fix;
92 92
                 $checks = $this->get('check') ?: $this->checks;
@@ -120,11 +120,11 @@  discard block
 block discarded – undo
120 120
             if ($packageNames && !in_array($package->name, $packageNames, true)) {
121 121
                 continue;
122 122
             }
123
-            if (is_string($message = $this->{'check' . $check}($package))) {
123
+            if (is_string($message = $this->{'check'.$check}($package))) {
124 124
                 if (!$packageNames && !$errors) {
125 125
                     $this->console->output(
126 126
                         str_repeat(chr(8), strlen($check))
127
-                        . '<fg=red;bg=black>' . $check . '</>'
127
+                        . '<fg=red;bg=black>'.$check.'</>'
128 128
                     );
129 129
                 }
130 130
                 $message = sprintf($message, "package <comment>$package->name</>");
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
                 if ($fix) {
134 134
                     $this->dontCheckCurrentPackageAgain = false;
135 135
                     $this->console->indent();
136
-                    $this->{'fix' . $check}($package);
136
+                    $this->{'fix'.$check}($package);
137 137
                     $this->console->outdent();
138 138
                     if (!$this->dontCheckCurrentPackageAgain) {
139 139
                         $rerunForPackages[] = $package->name;
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
             if (!$errors) {
156 156
                 $this->console->output(
157 157
                     str_repeat(chr(8), strlen($check))
158
-                    . '<fg=green;bg=black>' . $check . '</>'
158
+                    . '<fg=green;bg=black>'.$check.'</>'
159 159
                 );
160 160
             }
161 161
             $this->console->outdent();
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
             $this->git('reset', $package->path);
213 213
             $args = 'save -u';
214 214
             if ($message = $this->answer('Message for stash:')) {
215
-                $args .= ' ' . escapeshellarg($message);
215
+                $args .= ' '.escapeshellarg($message);
216 216
             }
217 217
             $this->git('stash', $package->path, $args);
218 218
             break;
@@ -283,7 +283,7 @@  discard block
 block discarded – undo
283 283
         case 2:
284 284
             foreach ($commands as $command) {
285 285
                 $pck = "<comment>{$package->name}</comment>";
286
-                $this->console->output($msg = ucfirst($command) . "ing $pck...", false);
286
+                $this->console->output($msg = ucfirst($command)."ing $pck...", false);
287 287
                 $this->git($command, $package->path, isset($options) ? $options : null);
288 288
                 $this->console->output(
289 289
                     str_repeat(chr(8), strlen(strip_tags($msg)))
@@ -330,8 +330,8 @@  discard block
 block discarded – undo
330 330
                         }
331 331
                         if ($package->requiredBranch && $package->requiredBranch !== $requiredBranch) {
332 332
                             $package->invalidRequirements = true;
333
-                            return '<error>' . array_pop($dependentPackages)
334
-                                . ' and ' . array_pop($dependentPackages)
333
+                            return '<error>'.array_pop($dependentPackages)
334
+                                . ' and '.array_pop($dependentPackages)
335 335
                                 . ' require %s in different branches</error>';
336 336
                         }
337 337
                         $package->requiredBranch = $requiredBranch;
@@ -343,7 +343,7 @@  discard block
 block discarded – undo
343 343
                     }
344 344
                 }
345 345
             }
346
-            $constraint = $package->tag ?: 'dev-' . $package->branch;
346
+            $constraint = $package->tag ?: 'dev-'.$package->branch;
347 347
             if ($package->requiredBranch && $package->requiredBranch !== $package->branch) {
348 348
                 return "%s is at <comment>$constraint</comment> but is required at <comment>dev-{$package->requiredBranch}</comment>";
349 349
             }
@@ -367,8 +367,8 @@  discard block
 block discarded – undo
367 367
         if ($package->invalidRequirements) {
368 368
             $this->doExit('Can not fix that', 1);
369 369
         }
370
-        $currentConstraint = $package->tag ?: 'dev-' . $package->branch;
371
-        $requiredConstraint = 'dev-' . $package->requiredBranch;
370
+        $currentConstraint = $package->tag ?: 'dev-'.$package->branch;
371
+        $requiredConstraint = 'dev-'.$package->requiredBranch;
372 372
         if ($package->requiredBranch) {
373 373
             $actions = array(
374 374
                 1 => "Show divergent commits between <comment>$currentConstraint</comment> and <comment>$requiredConstraint</comment> (and ask again)",
@@ -421,7 +421,7 @@  discard block
 block discarded – undo
421 421
         if ($package->git && !$package->isRoot) {
422 422
             $remote = false;
423 423
             do {
424
-                $reference = ($remote ? 'origin/' : '') . $package->source->reference;
424
+                $reference = ($remote ? 'origin/' : '').$package->source->reference;
425 425
                 try {
426 426
                     $rawCounts = $this->git('rev-list', $package->path, "--count --left-right --cherry-pick {$reference}...");
427 427
                     break;
@@ -436,9 +436,9 @@  discard block
 block discarded – undo
436 436
             if ($counts[0] || $counts[1]) {
437 437
                 $num = $counts[0] ?: $counts[1];
438 438
                 $type = $counts[0] ? 'behind</>' : 'ahead</> of';
439
-                return '%s is <comment>' . $num . ' commit' . ($num > 1 ? 's ' : ' ')
440
-                    . $type . ' locked commit <comment>'
441
-                    . substr($package->source->reference, 0, 7) . '</>';
439
+                return '%s is <comment>'.$num.' commit'.($num > 1 ? 's ' : ' ')
440
+                    . $type.' locked commit <comment>'
441
+                    . substr($package->source->reference, 0, 7).'</>';
442 442
             }
443 443
         }
444 444
         return null;
@@ -490,7 +490,7 @@  discard block
 block discarded – undo
490 490
         if ($package->isRoot) {
491 491
             try {
492 492
                 $this->composer('validate', '--no-check-all --no-check-publish');
493
-            } catch(Exception\ProcessFailedException $e) {
493
+            } catch (Exception\ProcessFailedException $e) {
494 494
                 return 'The lock file is not up to date with the latest changes in root composer.json';
495 495
             }
496 496
         }
@@ -558,12 +558,12 @@  discard block
 block discarded – undo
558 558
             $side = $i ? 'left' : 'right';
559 559
             $otherSide = $i ? 'right' : 'left';
560 560
             $args = "--$side-only --cherry-pick --pretty=format:'%C(yellow)%h %Cgreen%cd %an%Creset%n  %s' --abbrev-commit --date=local ";
561
-            $args .= $ref . '...';
561
+            $args .= $ref.'...';
562 562
             $log = $this->git('log', $package->path, $args, array('shy' => true));
563 563
             if ($log) {
564 564
                 $this->console->output('');
565 565
 
566
-                $title = "<info>{${$side . 'Title'}}</info> > <info>{${$otherSide . 'Title'}}</info>";
566
+                $title = "<info>{${$side.'Title'}}</info> > <info>{${$otherSide.'Title'}}</info>";
567 567
                 $this->output($title);
568 568
                 $this->console->output(str_repeat('-', strlen(strip_tags($title))));
569 569
 
Please login to merge, or discard this patch.
src/Workflow/Composer/Checkout.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
     public function assemble()
67 67
     {
68 68
         $this->callback(
69
-            function () {
69
+            function() {
70 70
                 $this->checkoutPackages(
71 71
                     array_unique(array_merge((array) $this->get('branch'), ['master'])),
72 72
                     $this->get('merge'),
@@ -109,9 +109,9 @@  discard block
 block discarded – undo
109 109
             $lastBranch = array_pop($branches);
110 110
             $message = 'Could not find branch ';
111 111
             if ($branches) {
112
-                $message .= implode(', ', $branches) . ' or ';
112
+                $message .= implode(', ', $branches).' or ';
113 113
             }
114
-            $message .= $lastBranch . ' in any installed package';
114
+            $message .= $lastBranch.' in any installed package';
115 115
             $this->console->output("<warning>$message</warning>");
116 116
             return;
117 117
         }
Please login to merge, or discard this patch.
presets/typo3/bootstrap.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
     die('Access denied');
22 22
 }
23 23
 
24
-define('PATH_site', getcwd() . DIRECTORY_SEPARATOR);
24
+define('PATH_site', getcwd().DIRECTORY_SEPARATOR);
25 25
 
26 26
 $typo3VersionIsMinimum7 = true;
27 27
 $typo3VersionIsMinimum8 = false;
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 }
35 35
 
36 36
 if ($typo3VersionIsMinimum7) {
37
-    $classLoader = include getcwd() . '/typo3_src/vendor/autoload.php';
37
+    $classLoader = include getcwd().'/typo3_src/vendor/autoload.php';
38 38
     $bootstrap = \TYPO3\CMS\Core\Core\Bootstrap::getInstance();
39 39
     $bootstrap->initializeClassLoader($classLoader);
40 40
 
Please login to merge, or discard this patch.