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 ( 4d6522...cafe43 )
by Андрей
03:51
created
config/module.config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 $config = [
9 9
     'workflow_zf2_toolkit' => [
10 10
         'rootEntityNamespace' => 'OldTown\\Workflow\\ZF2\\Toolkit\\Entity\\',
11
-        'entityMap' => []
11
+        'entityMap' => [ ]
12 12
     ]
13 13
 ];
14 14
 
Please login to merge, or discard this patch.
src/DoctrineWorkflowStory/DoctrineWorkflowStoryService.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -54,13 +54,13 @@
 block discarded – undo
54 54
      *
55 55
      * @param array $options
56 56
      */
57
-    public function __construct(array $options = [])
57
+    public function __construct(array $options = [ ])
58 58
     {
59 59
         $initOptions = [
60
-            array_key_exists('serializerManager', $options) ? $options['serializerManager'] : null,
61
-            array_key_exists('moduleOptions', $options) ? $options['moduleOptions'] : null
60
+            array_key_exists('serializerManager', $options) ? $options[ 'serializerManager' ] : null,
61
+            array_key_exists('moduleOptions', $options) ? $options[ 'moduleOptions' ] : null
62 62
         ];
63
-        call_user_func_array([$this, 'init'], $initOptions);
63
+        call_user_func_array([ $this, 'init' ], $initOptions);
64 64
     }
65 65
 
66 66
     /**
Please login to merge, or discard this patch.
src/Options/ModuleOptions.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
      *
27 27
      * @var array
28 28
      */
29
-    protected $entityMap = [];
29
+    protected $entityMap = [ ];
30 30
 
31 31
     /**
32 32
      * @return string
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
      *
62 62
      * @return $this
63 63
      */
64
-    public function setEntityMap(array $entityMap = [])
64
+    public function setEntityMap(array $entityMap = [ ])
65 65
     {
66 66
         $this->entityMap = $entityMap;
67 67
 
Please login to merge, or discard this patch.