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.
Passed
Branch dev (d5e133)
by Андрей
20:27 queued 13s
created
Module.php 1 patch
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.
src/Dispatcher/Dispatcher.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -327,7 +327,7 @@
 block discarded – undo
327 327
      *
328 328
      * @param WorkflowDispatchEventInterface $e
329 329
      *
330
-     * @return TransitionResultInterface
330
+     * @return null|WorkflowService\TransitionResult
331 331
      */
332 332
     public function onRunWorkflowHandler(WorkflowDispatchEventInterface $e)
333 333
     {
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
 namespace OldTown\Workflow\ZF2\Dispatch\Dispatcher;
7 7
 
8 8
 use OldTown\Workflow\TransientVars\TransientVarsInterface;
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
         $event->getMvcEvent()->setParam(static::WORKFLOW_DISPATCH_EVENT, $event);
116 116
         $event->setTarget($this);
117 117
 
118
-        $metadataResult = $this->getEventManager()->trigger(WorkflowDispatchEventInterface::LOAD_METADATA_EVENT, $event, function ($test) {
118
+        $metadataResult = $this->getEventManager()->trigger(WorkflowDispatchEventInterface::LOAD_METADATA_EVENT, $event, function($test) {
119 119
             return ($test instanceof MetadataInterface);
120 120
         });
121 121
         $metadata = $metadataResult->last();
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
         }
151 151
 
152 152
         if (true === $flagRunWorkflow) {
153
-            $runWorkflowResults = $this->getEventManager()->trigger(WorkflowDispatchEventInterface::RUN_WORKFLOW_EVENT, $event, function ($result) {
153
+            $runWorkflowResults = $this->getEventManager()->trigger(WorkflowDispatchEventInterface::RUN_WORKFLOW_EVENT, $event, function($result) {
154 154
                 return ($result instanceof TransitionResultInterface);
155 155
             });
156 156
 
@@ -491,7 +491,7 @@  discard block
 block discarded – undo
491 491
      */
492 492
     public function setWorkflowDispatchEventClassName($workflowDispatchEventClassName)
493 493
     {
494
-        $this->workflowDispatchEventClassName = (string)$workflowDispatchEventClassName;
494
+        $this->workflowDispatchEventClassName = (string) $workflowDispatchEventClassName;
495 495
 
496 496
         return $this;
497 497
     }
@@ -511,7 +511,7 @@  discard block
 block discarded – undo
511 511
      */
512 512
     public function setTransientVarsClassName($transientVarsClassName)
513 513
     {
514
-        $this->transientVarsClassName = (string)$transientVarsClassName;
514
+        $this->transientVarsClassName = (string) $transientVarsClassName;
515 515
 
516 516
         return $this;
517 517
     }
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;
7 7
 
8 8
 return [
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;
7 7
 
8 8
 use OldTown\Workflow\ZF2\Dispatch\Listener\WorkflowDispatchListenerFactory;
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
 namespace  OldTown\Workflow\ZF2\Dispatch\Annotation;
7 7
 
8 8
 /**
Please login to merge, or discard this patch.
src/Annotation/DispatchConditions.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\Annotation;
7 7
 
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
 namespace  OldTown\Workflow\ZF2\Dispatch\Annotation;
7 7
 
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
 namespace  OldTown\Workflow\ZF2\Dispatch\Annotation;
7 7
 
8 8
 /**
Please login to merge, or discard this patch.
src/Annotation/WorkflowRouterMap.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\Annotation;
7 7
 
8 8
 use OldTown\Workflow\ZF2\Dispatch\Metadata\Storage\Metadata;
Please login to merge, or discard this patch.