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 ( 78b9a3...0417b0 )
by Bruno
01:22
created
PlaceholdersExtension/Transformation/RuntimePlaceholdersTransformation.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 
4 4
 namespace Ciandt\Behat\PlaceholdersExtension\Transformation;
5 5
 
6
-use Behat\Behat\Definition\Call\DefinitionCall;
7 6
 use Behat\Gherkin\Node\PyStringNode;
8 7
 use Behat\Gherkin\Node\TableNode;
9 8
 use Behat\Testwork\Call\RuntimeCallee;
Please login to merge, or discard this patch.
src/Ciandt/Behat/PlaceholdersExtension/Config/PlaceholdersRepository.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -87,14 +87,14 @@  discard block
 block discarded – undo
87 87
         $this->environment = $environment;
88 88
     }
89 89
     
90
-    private function getScenarioTags(){
90
+    private function getScenarioTags() {
91 91
         return $this->beforeScenarioSubscriber->getScenarioTags();
92 92
     }
93 93
 
94 94
     private function replaceRecursively($placeholder, $replaced = array())
95 95
     {
96 96
         // if the current placeholder was already replaced before, this is a cyclic dependecy
97
-        if (in_array($placeholder, $replaced)){
97
+        if (in_array($placeholder, $replaced)) {
98 98
             $tree = implode('>', $replaced);
99 99
             throw new Exception("Cyclic placeholder dependecy detected. Trying to replace $placeholder again when already replaced: $tree");
100 100
         }
@@ -116,13 +116,13 @@  discard block
 block discarded – undo
116 116
 
117 117
 
118 118
         // Then look in the placeholder files
119
-        if ($replacement === null && $configTag !== false ) {
119
+        if ($replacement === null && $configTag !== false) {
120 120
             $section = PlaceholderUtils::getSectionKey($configTag);
121 121
             $placeholders = $this->getSectionPlaceholders($configKey, $section);
122 122
             $replacement = $this->recursiveReplacementSearch($keys, $placeholders);
123 123
         }
124 124
 
125
-        if ($replacement === null && $configTag !== false){
125
+        if ($replacement === null && $configTag !== false) {
126 126
             $configPath = $this->getFilePath($configKey);
127 127
             $treePosition = "$configPath>$section>placeholders";
128 128
             throw new UndefinedPlaceholderException("No $placeholder replacement was defined on runtime or on $treePosition>$placeholder for variant $variant and environment $environment");
Please login to merge, or discard this patch.