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 — master ( 512ed0...66c291 )
by Bruno
01:45
created
Behat/PlaceholdersExtension/Tester/ScenarioBranchingFeatureTester.php 2 patches
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -132,6 +132,9 @@  discard block
 block discarded – undo
132 132
     }
133 133
 
134 134
 
135
+    /**
136
+     * @param string[] $variants
137
+     */
135 138
     private function forkScenario(ScenarioNode $scenario, $variants, $configTag)
136 139
     {
137 140
         $scenarios = array();
@@ -155,6 +158,9 @@  discard block
 block discarded – undo
155 158
         return $scenarios;
156 159
     }
157 160
 
161
+    /**
162
+     * @param StepNode[] $steps
163
+     */
158 164
     private function injectParametersOnSteps($steps, $variant, $configTag)
159 165
     {
160 166
         $injectedSteps = array();
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -135,7 +135,7 @@
 block discarded – undo
135 135
     private function forkScenario(ScenarioNode $scenario, $variants, $configTag)
136 136
     {
137 137
         $scenarios = array();
138
-        $nonVariantTags = array_filter($scenario->getTags(), function ($val) {
138
+        $nonVariantTags = array_filter($scenario->getTags(), function($val) {
139 139
             if (!in_array($val, $this->variantTags)) {
140 140
                 return true;
141 141
             }
Please login to merge, or discard this patch.