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 — dev ( e95e22...6a834e )
by Андрей
03:34
created
Module.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
     const CONFIG_KEY = 'workflow_zf2_dispatch';
37 37
 
38 38
     /**
39
-     * @return array
39
+     * @return string[]
40 40
      */
41 41
     public function getModuleDependencies()
42 42
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@
 block discarded – undo
114 114
     {
115 115
 
116 116
         if (!$manager instanceof ModuleManager) {
117
-            $errMsg =sprintf('Module manager not implement %s', ModuleManager::class);
117
+            $errMsg = sprintf('Module manager not implement %s', ModuleManager::class);
118 118
             throw new Exception\ErrorInitModuleException($errMsg);
119 119
         }
120 120
         /** @var ModuleManager $manager */
Please login to merge, or discard this patch.
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @link https://github.com/old-town/workflow-zf2-dispatch
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link https://github.com/old-town/workflow-zf2-dispatch
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 
7 7
 use OldTown\Workflow\ZF2\Dispatch\PhpUnit\TestData\IntegrationTest\TestController;
8 8
 
Please login to merge, or discard this patch.
test/phpunit/_files/IntegrationTest/config/autoload/global.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @link https://github.com/old-town/workflow-zf2-dispatch
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link https://github.com/old-town/workflow-zf2-dispatch
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 
7 7
 use OldTown\Workflow\ZF2\Dispatch\PhpUnit\TestData\IntegrationTest\TestController;
8 8
 
Please login to merge, or discard this patch.
test/phpunit/tests/ModuleTest.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @link    https://github.com/old-town/workflow-zf2-dispatch
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link    https://github.com/old-town/workflow-zf2-dispatch
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 namespace OldTown\Workflow\ZF2\Dispatch\PhpUnit\Test;
7 7
 
8 8
 use OldTown\Workflow\ZF2\Dispatch\PhpUnit\TestData\TestPaths;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
             include TestPaths::getPathToIntegrationTest()
29 29
         );
30 30
 
31
-        $this->getApplication()->getEventManager()->attach(MvcEvent::EVENT_DISPATCH_ERROR, function (MvcEvent $e) {
31
+        $this->getApplication()->getEventManager()->attach(MvcEvent::EVENT_DISPATCH_ERROR, function(MvcEvent $e) {
32 32
             $exception = $e->getParam('exception', null);
33 33
             if ($exception) {
34 34
                 throw $exception;
Please login to merge, or discard this patch.
config/router.config.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @link    https://github.com/old-town/workflow-zf2-dispatch
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link    https://github.com/old-town/workflow-zf2-dispatch
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 namespace OldTown\Workflow\ZF2\Dispatch\PhpUnit\Test;
7 7
 
8 8
 use OldTown\Workflow\ZF2\Dispatch\PhpUnit\TestData\TestPaths;
Please login to merge, or discard this patch.
config/serviceManager.config.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @link    https://github.com/old-town/workflow-zf2-dispatch
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link    https://github.com/old-town/workflow-zf2-dispatch
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 namespace OldTown\Workflow\ZF2\Dispatch\PhpUnit\Test;
7 7
 
8 8
 use OldTown\Workflow\ZF2\Dispatch\PhpUnit\TestData\TestPaths;
Please login to merge, or discard this patch.
src/Annotation/Condition.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @link https://github.com/old-town/workflow-zf2-dispatch
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link https://github.com/old-town/workflow-zf2-dispatch
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 
7 7
 use OldTown\Workflow\ZF2\Dispatch\PhpUnit\TestData\IntegrationTest\TestController;
8 8
 
Please login to merge, or discard this patch.
src/Annotation/PrepareData.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @link https://github.com/old-town/workflow-zf2-dispatch
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link https://github.com/old-town/workflow-zf2-dispatch
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 
7 7
 use OldTown\Workflow\ZF2\Dispatch\PhpUnit\TestData\IntegrationTest\TestController;
8 8
 
Please login to merge, or discard this patch.
src/Annotation/WorkflowDispatch.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @link https://github.com/old-town/workflow-zf2-dispatch
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link https://github.com/old-town/workflow-zf2-dispatch
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 
7 7
 use OldTown\Workflow\ZF2\Dispatch\PhpUnit\TestData\IntegrationTest\TestController;
8 8
 
Please login to merge, or discard this patch.
src/Dispatcher/DispatcherInterface.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @link https://github.com/old-town/workflow-zf2-dispatch
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link https://github.com/old-town/workflow-zf2-dispatch
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 
7 7
 use OldTown\Workflow\ZF2\Dispatch\PhpUnit\TestData\IntegrationTest\TestController;
8 8
 
Please login to merge, or discard this patch.