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 ( 909684...e1b3d2 )
by Андрей
15:20
created
src/Exception/QueryNotSupportedException.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/old-town-workflow
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link https://github.com/old-town/old-town-workflow
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 namespace OldTown\Workflow\PhpUnit\Utils;
7 7
 
8 8
 use OldTown\Workflow\PhpUnit\Test\Paths;
Please login to merge, or discard this patch.
bootstrap/OldTownWorkflowBehatTestBootstrap/WorkflowDescriptorContext.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -771,7 +771,7 @@
 block discarded – undo
771 771
      * @param           $methodName
772 772
      * @param TableNode $table
773 773
      *
774
-     * @return mixed
774
+     * @return AbstractDescriptor
775 775
      * @throws \RuntimeException
776 776
      */
777 777
     public function getTheDescriptorUsingTheMethodOfTheArgumentsOfTheMethod($methodName, TableNode $table)
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/old-town-workflow
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link    https://github.com/old-town/old-town-workflow
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 namespace OldTown\Workflow\PhpUnitTest\Loader;
7 7
 
8 8
 use OldTown\Workflow\PhpUnit\Test\Paths;
Please login to merge, or discard this patch.
test/phpunit/_files/VariableResolver/TestObject.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/old-town-workflow
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link    https://github.com/old-town/old-town-workflow
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 namespace OldTown\Workflow\PhpUnitTest\Loader;
7 7
 
8 8
 use OldTown\Workflow\PhpUnit\Test\Paths;
Please login to merge, or discard this patch.
test/phpunit/tests/Util/DefaultVariableResolverTest.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/old-town-workflow
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link    https://github.com/old-town/old-town-workflow
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 namespace OldTown\Workflow\PhpUnitTest\Loader;
7 7
 
8 8
 use OldTown\Workflow\PhpUnit\Test\Paths;
Please login to merge, or discard this patch.
Behat/bootstrap/OldTownWorkflowBehatTestBootstrap/WorkflowEngineContext.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -72,8 +72,8 @@  discard block
 block discarded – undo
72 72
      */
73 73
     protected function init()
74 74
     {
75
-        $this->callbackFactory = function (WorkflowDescriptor $descriptor) {
76
-            return function () use ($descriptor) {
75
+        $this->callbackFactory = function(WorkflowDescriptor $descriptor) {
76
+            return function() use ($descriptor) {
77 77
                 return $descriptor;
78 78
             };
79 79
         };
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
      */
205 205
     public function initializeWorkflowEntry($entryAlias, $workflowName, $initialAction)
206 206
     {
207
-        $entryAlias = (string)$entryAlias;
207
+        $entryAlias = (string) $entryAlias;
208 208
         if (array_key_exists($entryAlias, $this->entryAliasToEntryId)) {
209 209
             $errMsg = sprintf('Alias %s already exists', $entryAlias);
210 210
             throw new \RuntimeException($errMsg);
@@ -231,7 +231,7 @@  discard block
 block discarded – undo
231 231
      */
232 232
     public function callActionWithIdForWorkflowProcessWithAlias($entryAlias, $actionId)
233 233
     {
234
-        $entryAlias = (string)$entryAlias;
234
+        $entryAlias = (string) $entryAlias;
235 235
         if (!array_key_exists($entryAlias, $this->entryAliasToEntryId)) {
236 236
             $errMsg = sprintf('Alias %s not exists', $entryAlias);
237 237
             throw new \RuntimeException($errMsg);
@@ -315,7 +315,7 @@  discard block
 block discarded – undo
315 315
         $currentSteps = $this->getWorkflowManager()->getConfiguration()->getWorkflowStore()->findCurrentSteps($entryId);
316 316
         $actualCurrentSteps = [];
317 317
         foreach ($currentSteps as $currentStep) {
318
-            $actualCurrentSteps[(integer)$currentStep->getStepId()] = $currentStep;
318
+            $actualCurrentSteps[(integer) $currentStep->getStepId()] = $currentStep;
319 319
         }
320 320
 
321 321
         $stepsColumn = $steps->getColumn(0);
@@ -325,7 +325,7 @@  discard block
 block discarded – undo
325 325
         }
326 326
 
327 327
         foreach ($stepsColumn as $currentStepFromColumn) {
328
-            $currentStepFromColumn = (integer)$currentStepFromColumn;
328
+            $currentStepFromColumn = (integer) $currentStepFromColumn;
329 329
             if (!array_key_exists($currentStepFromColumn, $actualCurrentSteps)) {
330 330
                 $errMsg = sprintf('Step not found %s', $currentStepFromColumn);
331 331
                 throw new \RuntimeException($errMsg);
Please login to merge, or discard this patch.
test/Behat/files/OldTownWorkflowBehatTestData/VariableResolver/Register.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/old-town-workflow
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link    https://github.com/old-town/old-town-workflow
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 namespace OldTown\Workflow\PhpUnitTest\Loader;
7 7
 
8 8
 use OldTown\Workflow\PhpUnit\Test\Paths;
Please login to merge, or discard this patch.
Behat/files/OldTownWorkflowBehatTestData/VariableResolver/Validator.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/old-town-workflow
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link    https://github.com/old-town/old-town-workflow
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 namespace OldTown\Workflow\PhpUnitTest\Loader;
7 7
 
8 8
 use OldTown\Workflow\PhpUnit\Test\Paths;
Please login to merge, or discard this patch.
Behat/files/OldTownWorkflowBehatTestData/VariableResolver/TestObject.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/old-town-workflow
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link    https://github.com/old-town/old-town-workflow
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 namespace OldTown\Workflow\PhpUnitTest\Loader;
7 7
 
8 8
 use OldTown\Workflow\PhpUnit\Test\Paths;
Please login to merge, or discard this patch.
src/Exception/InvalidDtdSchemaException.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/old-town-workflow
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link https://github.com/old-town/old-town-workflow
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 namespace OldTown\Workflow\PhpUnit\Utils;
7 7
 
8 8
 use OldTown\Workflow\PhpUnit\Test\Paths;
Please login to merge, or discard this patch.