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
src/Metadata/Reader/Exception/RuntimeException.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\Metadata\Reader\Exception;
7 7
 
8 8
 use OldTown\Workflow\ZF2\Dispatch\Metadata\Exception\RuntimeException as Exception;
Please login to merge, or discard this patch.
src/Metadata/Reader/ReaderInterface.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\Metadata\Reader;
7 7
 
8 8
 use \OldTown\Workflow\ZF2\Dispatch\Metadata\Storage\MetadataInterface;
Please login to merge, or discard this patch.
src/Metadata/Storage/DispatchConditionMetadata.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\Metadata\Storage;
7 7
 
8 8
 /**
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@
 block discarded – undo
113 113
      */
114 114
     public function setHandler($handler = null)
115 115
     {
116
-        $this->handler = null !== $handler ? (string)$handler: $handler;
116
+        $this->handler = null !== $handler ? (string) $handler : $handler;
117 117
 
118 118
         return $this;
119 119
     }
Please login to merge, or discard this patch.
src/Metadata/Storage/Exception/ExceptionInterface.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\Metadata\Storage\Exception;
7 7
 
8 8
 use OldTown\Workflow\ZF2\Dispatch\Metadata\Exception\ExceptionInterface as BaseException;
Please login to merge, or discard this patch.
src/Metadata/Storage/Exception/InvalidMetadataException.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\Metadata\Storage\Exception;
7 7
 
8 8
 /**
Please login to merge, or discard this patch.
src/Metadata/Storage/Metadata.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\Metadata\Storage;
7 7
 
8 8
 use SplObjectStorage;
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
      */
182 182
     public function setWorkflowDispatch($workflowDispatch)
183 183
     {
184
-        $this->workflowDispatch = (boolean)$workflowDispatch;
184
+        $this->workflowDispatch = (boolean) $workflowDispatch;
185 185
 
186 186
         return $this;
187 187
     }
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
             $errMsg = sprintf('Not allowed type %s', $workflowRunType);
215 215
             throw new Exception\InvalidMetadataException($errMsg);
216 216
         }
217
-        $this->workflowRunType = (string)$workflowRunType;
217
+        $this->workflowRunType = (string) $workflowRunType;
218 218
 
219 219
         return $this;
220 220
     }
@@ -239,7 +239,7 @@  discard block
 block discarded – undo
239 239
      */
240 240
     public function setFlagRunPrepareData($flagRunPrepareData)
241 241
     {
242
-        $this->flagRunPrepareData = (boolean)$flagRunPrepareData;
242
+        $this->flagRunPrepareData = (boolean) $flagRunPrepareData;
243 243
 
244 244
         return $this;
245 245
     }
@@ -268,7 +268,7 @@  discard block
 block discarded – undo
268 268
             $errMsg = sprintf('Not allowed prepare data method %s', $prepareDataMethod);
269 269
             throw new Exception\InvalidMetadataException($errMsg);
270 270
         }
271
-        $this->prepareDataMethod = (string)$prepareDataMethod;
271
+        $this->prepareDataMethod = (string) $prepareDataMethod;
272 272
 
273 273
         return $this;
274 274
     }
@@ -293,7 +293,7 @@  discard block
 block discarded – undo
293 293
      */
294 294
     public function setPrepareDataHandler($prepareDataHandler)
295 295
     {
296
-        $this->prepareDataHandler = (string)$prepareDataHandler;
296
+        $this->prepareDataHandler = (string) $prepareDataHandler;
297 297
 
298 298
         return $this;
299 299
     }
@@ -317,7 +317,7 @@  discard block
 block discarded – undo
317 317
      */
318 318
     public function setFlagHasConditions($flagHasConditions)
319 319
     {
320
-        $this->flagHasConditions = (boolean)$flagHasConditions;
320
+        $this->flagHasConditions = (boolean) $flagHasConditions;
321 321
 
322 322
         return $this;
323 323
     }
@@ -438,7 +438,7 @@  discard block
 block discarded – undo
438 438
      */
439 439
     public function setEntryIdRouterParam($entryIdRouterParam)
440 440
     {
441
-        $this->entryIdRouterParam = (string)$entryIdRouterParam;
441
+        $this->entryIdRouterParam = (string) $entryIdRouterParam;
442 442
 
443 443
         return $this;
444 444
     }
Please login to merge, or discard this patch.
src/Metadata/Storage/MetadataInterface.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\Metadata\Storage;
7 7
 
8 8
 use SplObjectStorage;
Please login to merge, or discard this patch.
src/Options/Exception/ExceptionInterface.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\Options\Exception;
7 7
 
8 8
 use \OldTown\Workflow\ZF2\Dispatch\Exception\ExceptionInterface as BaseException;
Please login to merge, or discard this patch.
src/Options/Exception/InvalidViewNameException.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\Options\Exception;
7 7
 
8 8
 use OldTown\Workflow\ZF2\Dispatch\Exception\InvalidArgumentException as Exception;
Please login to merge, or discard this patch.