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 — develop ( f3b1a9...74d63f )
by Stuart
05:50
created
src/php/StoryplayerInternals/SPv3/Framework/Actionables/BaseTemplate.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
         return new Actionable(
135 135
             [$this, 'perPhaseSetup'],
136 136
             $this->getSourceFilename(),
137
-            [ 'perPhaseSetup' ]
137
+            ['perPhaseSetup']
138 138
         );
139 139
     }
140 140
 
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
         return new Actionable(
149 149
             [$this, 'perPhaseTeardown'],
150 150
             $this->getSourceFilename(),
151
-            [ 'perPhaseTeardown' ]
151
+            ['perPhaseTeardown']
152 152
         );
153 153
     }
154 154
 
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
         return new Actionable(
163 163
             [$this, 'deviceSetup'],
164 164
             $this->getSourceFilename(),
165
-            [ 'deviceSetup' ]
165
+            ['deviceSetup']
166 166
         );
167 167
     }
168 168
 
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
         return new Actionable(
177 177
             [$this, 'deviceTeardown'],
178 178
             $this->getSourceFilename(),
179
-            [ 'deviceTeardown' ]
179
+            ['deviceTeardown']
180 180
         );
181 181
     }
182 182
 
Please login to merge, or discard this patch.
src/php/Storyplayer/SPv3/TestEnvironments/TestEnvironmentTemplate.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
         return new Actionable(
98 98
             [$this, 'testEnvironmentSetup'],
99 99
             $this->getSourceFilename(),
100
-            [ 'testEnvironmentSetup' ]
100
+            ['testEnvironmentSetup']
101 101
         );
102 102
     }
103 103
 
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
         return new Actionable(
112 112
             [$this, 'testEnvironmentTeardown'],
113 113
             $this->getSourceFilename(),
114
-            [ 'testEnvironmentTeardown' ]
114
+            ['testEnvironmentTeardown']
115 115
         );
116 116
     }
117 117
 }
Please login to merge, or discard this patch.