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
Branch master (b919b4)
by Bruno
03:07
created
src/Ciandt/Behat/PlaceholdersExtension/Config/ConfigsRepository.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.
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.
Behat/PlaceholdersExtension/Tester/ScenarioBranchingFeatureTester.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -120,6 +120,9 @@  discard block
 block discarded – undo
120 120
   }
121 121
 
122 122
 
123
+  /**
124
+   * @param string[] $variants
125
+   */
123 126
   private function forkScenario(ScenarioNode $scenario, $variants, $configTag) {
124 127
     $scenarios = array();
125 128
     $nonVariantTags = array_filter($scenario->getTags(), function ($val) {
@@ -141,6 +144,9 @@  discard block
 block discarded – undo
141 144
     return $scenarios;
142 145
   }
143 146
 
147
+  /**
148
+   * @param StepNode[] $steps
149
+   */
144 150
   private function injectParametersOnSteps($steps, $variant, $configTag) {
145 151
     $injectedSteps = array();
146 152
     foreach ($steps as $step) {
Please login to merge, or discard this patch.