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 ( 70d7cd...5f33a9 )
by Андрей
03:36
created
src/DoctrineWorkflowStory/DoctrineWorkflowStory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,6 +17,6 @@
 block discarded – undo
17 17
 {
18 18
     public function __construct()
19 19
     {
20
-        $this->entityMap['entry'] = ExtEntry::class;
20
+        $this->entityMap[ 'entry' ] = ExtEntry::class;
21 21
     }
22 22
 }
Please login to merge, or discard this patch.
src/DoctrineWorkflowStory/DoctrineWorkflowStoryService.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-toolkit
4
- * @author  Malofeykin Andrey  <[email protected]>
5
- */
3
+     * @link    https://github.com/old-town/workflow-zf2-toolkit
4
+     * @author  Malofeykin Andrey  <[email protected]>
5
+     */
6 6
 namespace OldTown\Workflow\ZF2\Toolkit\DoctrineWorkflowStory;
7 7
 
8 8
 use Zend\Serializer\AdapterPluginManager as SerializerManager;
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -44,12 +44,12 @@
 block discarded – undo
44 44
      *
45 45
      * @param array $options
46 46
      */
47
-    public function __construct(array $options = [])
47
+    public function __construct(array $options = [ ])
48 48
     {
49 49
         $initOptions = [
50
-            array_key_exists('serializerManager', $options) ? $options['serializerManager'] : null
50
+            array_key_exists('serializerManager', $options) ? $options[ 'serializerManager' ] : null
51 51
         ];
52
-        call_user_func_array([$this, 'init'], $initOptions);
52
+        call_user_func_array([ $this, 'init' ], $initOptions);
53 53
     }
54 54
 
55 55
     /**
Please login to merge, or discard this patch.