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
src/Ciandt/Behat/PlaceholdersExtension/Tester/PlaceholdersReplacer.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -104,6 +104,10 @@
 block discarded – undo
104 104
                 $step->getKeyword(), $text, $arguments, $step->getLine(), $step->getKeywordType());
105 105
     }
106 106
 
107
+    /**
108
+     * @param string $string
109
+     * @param string $env
110
+     */
107 111
     private function replacePlaceholders($string, $var, $env) {
108 112
         preg_match_all('/\${(?P<key>[^}]+)}/i', $string, $placeholders, PREG_SET_ORDER);
109 113
         foreach ($placeholders as $placeholder) {
Please login to merge, or discard this patch.
src/Ciandt/Behat/PlaceholdersExtension/Config/PlaceholdersRepository.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,6 @@
 block discarded – undo
32 32
 
33 33
   /**
34 34
      * 
35
-     * @param type $config_files
36 35
      * @todo user %paths.base% value
37 36
      */
38 37
     private function loadConfigFiles($configs_mapping){
Please login to merge, or discard this patch.
Behat/PlaceholdersExtension/Tester/ScenarioBranchingFeatureTester.php 1 patch
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.