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 ( cbf78b...50268c )
by
unknown
03:03
created
src/Task/IncludeTask.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
     public function execute()
52 52
     {
53 53
         ob_start(
54
-            function ($output) {
54
+            function($output) {
55 55
                 $this->console->output($output, false);
56 56
                 return '';
57 57
             }, 2, 0
Please login to merge, or discard this 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\Task;
Please login to merge, or discard this patch.
src/Task/ComposerTask.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
     {
58 58
         if ($name === 'command') {
59 59
             parent::offsetSet('composerCommand', $value);
60
-            $value = 'composer ' .  $value;
60
+            $value = 'composer ' . $value;
61 61
         }
62 62
         parent::offsetSet($name, $value);
63 63
     }
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -136,7 +136,7 @@
 block discarded – undo
136 136
     /**
137 137
      * Execute the command
138 138
      *
139
-     * @return mixed
139
+     * @return null|string
140 140
      */
141 141
     protected function executeCommand()
142 142
     {
Please login to merge, or discard this patch.
src/Task/PharTask.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\Task
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\Task
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\Task;
15 15
 use Netresearch\Kite\Task;
Please login to merge, or discard this patch.
src/Task/ExitTask.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\Task;
Please login to merge, or discard this patch.
src/Console/Command/JobCommand.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@
 block discarded – undo
15 15
 namespace Netresearch\Kite\Service;
16 16
 
17 17
 use Netresearch\Kite\Console\Output\Output;
18
-
19 18
 use Symfony\Component\Console\Application;
20 19
 use Symfony\Component\Console\Helper;
21 20
 use Symfony\Component\Console\Input\InputInterface;
Please login to merge, or discard this 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 Console
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 Console
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\Console;
16 16
 use Netresearch\Kite\Console\Command\LogCommand;
Please login to merge, or discard this patch.
src/Service/Descriptor.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@
 block discarded – undo
15 15
 namespace Netresearch\Kite\Task;
16 16
 
17 17
 
18
-use Netresearch\Kite\Exception;
19 18
 use Netresearch\Kite\Task;
20 19
 
21 20
 /**
Please login to merge, or discard this patch.
src/Workflow/ClearCodeCaches.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/Workflow/Composer/Checkout.php 1 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/Node.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.