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 master (77f5a0)
by Christian
03:58
created
src/Workflow/Composer/Checkout.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 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) $this->get('branch'),
72 72
                     $this->get('merge'),
Please login to merge, or discard this patch.
src/Workflow/Composer/Base.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -272,7 +272,7 @@
 block discarded – undo
272 272
         } elseif ($create) {
273 273
             $branches = array_unique(
274 274
                 array_map(
275
-                    function ($el) {
275
+                    function($el) {
276 276
                         $parts = explode('/', $el);
277 277
                         return array_pop($parts);
278 278
                     },
Please login to merge, or discard this patch.
src/Workflow/Git/AssertUnchanged.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -1,16 +1,16 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * See class comment
4
- *
5
- * PHP Version 5
6
- *
7
- * @category   Netresearch
8
- * @package    Netresearch\Kite\Workflow
9
- * @subpackage Git
10
- * @author     Christian Opitz <[email protected]>
11
- * @license    http://www.netresearch.de Netresearch Copyright
12
- * @link       http://www.netresearch.de
13
- */
3
+     * See class comment
4
+     *
5
+     * PHP Version 5
6
+     *
7
+     * @category   Netresearch
8
+     * @package    Netresearch\Kite\Workflow
9
+     * @subpackage Git
10
+     * @author     Christian Opitz <[email protected]>
11
+     * @license    http://www.netresearch.de Netresearch Copyright
12
+     * @link       http://www.netresearch.de
13
+     */
14 14
 
15 15
 namespace Netresearch\Kite\Workflow\Git;
16 16
 use Netresearch\Kite\Workflow;
Please login to merge, or discard this patch.
src/Workflow/RenderReference.php 2 patches
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -1,15 +1,15 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * See class comment
4
- *
5
- * PHP Version 5
6
- *
7
- * @category Netresearch
8
- * @package  Netresearch\Kite\Workflow
9
- * @author   Christian Opitz <[email protected]>
10
- * @license  http://www.netresearch.de Netresearch Copyright
11
- * @link     http://www.netresearch.de
12
- */
3
+     * See class comment
4
+     *
5
+     * PHP Version 5
6
+     *
7
+     * @category Netresearch
8
+     * @package  Netresearch\Kite\Workflow
9
+     * @author   Christian Opitz <[email protected]>
10
+     * @license  http://www.netresearch.de Netresearch Copyright
11
+     * @link     http://www.netresearch.de
12
+     */
13 13
 
14 14
 namespace Netresearch\Kite\Workflow;
15 15
 use Netresearch\Kite\Exception;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
     public function assemble()
61 61
     {
62 62
         $this->callback(
63
-            function () {
63
+            function() {
64 64
                 $this->findLoaders();
65 65
                 $file = $this->get('file');
66 66
                 $this->console->getFilesystem()->ensureDirectoryExists(dirname($file));
Please login to merge, or discard this patch.
src/ExpressionLanguage/Lexer.php 2 patches
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -1,16 +1,16 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * See class comment
4
- *
5
- * PHP Version 5
6
- *
7
- * @category   Netresearch
8
- * @package    Netresearch\Kite
9
- * @subpackage ExpressionLanguage
10
- * @author     Christian Opitz <[email protected]>
11
- * @license    http://www.netresearch.de Netresearch Copyright
12
- * @link       http://www.netresearch.de
13
- */
3
+     * See class comment
4
+     *
5
+     * PHP Version 5
6
+     *
7
+     * @category   Netresearch
8
+     * @package    Netresearch\Kite
9
+     * @subpackage ExpressionLanguage
10
+     * @author     Christian Opitz <[email protected]>
11
+     * @license    http://www.netresearch.de Netresearch Copyright
12
+     * @link       http://www.netresearch.de
13
+     */
14 14
 
15 15
 namespace Netresearch\Kite\ExpressionLanguage;
16 16
 use Symfony\Component\ExpressionLanguage\SyntaxError;
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -172,10 +172,10 @@
 block discarded – undo
172 172
                 }
173 173
                 if ($isTest) {
174 174
                     if ($isFunctionCall) {
175
-                        throw new SyntaxError('Can\'t use function return value in write context',  $stream->current->cursor);
175
+                        throw new SyntaxError('Can\'t use function return value in write context', $stream->current->cursor);
176 176
                     }
177 177
                     if (!$stream->current->test(Token::PUNCTUATION_TYPE, ')')) {
178
-                        throw new SyntaxError('Expected )',  $stream->current->cursor);
178
+                        throw new SyntaxError('Expected )', $stream->current->cursor);
179 179
                     }
180 180
                     $tokens[] = new Token(Token::STRING_TYPE, implode('.', $names), $token->cursor);
181 181
                 } else {
Please login to merge, or discard this patch.
src/Workflow.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -1,15 +1,15 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * See class comment
4
- *
5
- * PHP Version 5
6
- *
7
- * @category Netresearch
8
- * @package  Netresearch\Kite
9
- * @author   Christian Opitz <[email protected]>
10
- * @license  http://www.netresearch.de Netresearch Copyright
11
- * @link     http://www.netresearch.de
12
- */
3
+     * See class comment
4
+     *
5
+     * PHP Version 5
6
+     *
7
+     * @category Netresearch
8
+     * @package  Netresearch\Kite
9
+     * @author   Christian Opitz <[email protected]>
10
+     * @license  http://www.netresearch.de Netresearch Copyright
11
+     * @link     http://www.netresearch.de
12
+     */
13 13
 
14 14
 namespace Netresearch\Kite;
15 15
 
Please login to merge, or discard this patch.
src/Exception.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -1,16 +1,16 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * See class comment
4
- *
5
- * PHP Version 5
6
- *
7
- * @category   Netresearch
8
- * @package    Netresearch\Kite
9
- * @subpackage Exception
10
- * @author     Christian Opitz <[email protected]>
11
- * @license    http://www.netresearch.de Netresearch Copyright
12
- * @link       http://www.netresearch.de
13
- */
3
+     * See class comment
4
+     *
5
+     * PHP Version 5
6
+     *
7
+     * @category   Netresearch
8
+     * @package    Netresearch\Kite
9
+     * @subpackage Exception
10
+     * @author     Christian Opitz <[email protected]>
11
+     * @license    http://www.netresearch.de Netresearch Copyright
12
+     * @link       http://www.netresearch.de
13
+     */
14 14
 
15 15
 namespace Netresearch\Kite;
16 16
 
Please login to merge, or discard this patch.
src/Exception/ProcessFailedException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
         }
44 44
 
45 45
         $error = sprintf(
46
-            'The command "%s" failed.'."\n\nExit Code: %s(%s)\n\nWorking directory: %s",
46
+            'The command "%s" failed.' . "\n\nExit Code: %s(%s)\n\nWorking directory: %s",
47 47
             $process->getCommandLine(),
48 48
             $process->getExitCode(),
49 49
             $process->getExitCodeText(),
Please login to merge, or discard this patch.
src/Task/ScpTask.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -1,16 +1,16 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * See class comment
4
- *
5
- * PHP Version 5
6
- *
7
- * @category   Netresearch
8
- * @package    Netresearch\Kite
9
- * @subpackage Task
10
- * @author     Christian Opitz <[email protected]>
11
- * @license    http://www.netresearch.de Netresearch Copyright
12
- * @link       http://www.netresearch.de
13
- */
3
+     * See class comment
4
+     *
5
+     * PHP Version 5
6
+     *
7
+     * @category   Netresearch
8
+     * @package    Netresearch\Kite
9
+     * @subpackage Task
10
+     * @author     Christian Opitz <[email protected]>
11
+     * @license    http://www.netresearch.de Netresearch Copyright
12
+     * @link       http://www.netresearch.de
13
+     */
14 14
 
15 15
 namespace Netresearch\Kite\Task;
16 16
 use Netresearch\Kite\Exception;
Please login to merge, or discard this patch.