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 ( 0f9eb6...5d35a5 )
by Bruno
02:08
created
src/Ciandt/Behat/PlaceholdersExtension/Config/PlaceholdersRepository.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
 
63 63
     public function getFilePath($key)
64 64
     {
65
-         if (key_exists($key, $this->configs)) {
65
+          if (key_exists($key, $this->configs)) {
66 66
             return $this->configs[$key]['path'];
67 67
         }
68 68
         return null;
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 
4 4
 use Symfony\Component\Yaml\Yaml;
5 5
 use Ciandt\Behat\PlaceholdersExtension\Utils\PlaceholderUtils;
6
-use Ciandt\Behat\PlaceholdersExtension\PlaceholderContainer\PlaceholderContainer;
7 6
 use Ciandt\Behat\PlaceholdersExtension\Exception\MissingSectionException;
8 7
 use Ciandt\Behat\PlaceholdersExtension\Exception\UndefinedPlaceholderException;
9 8
 
Please login to merge, or discard this patch.
Ciandt/Behat/PlaceholdersExtension/Transformer/PlaceholdersTransformer.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,6 @@
 block discarded – undo
10 10
 
11 11
 /**
12 12
  * Transforms a single argument value.
13
-
14 13
  */
15 14
 class PlaceholdersTransformer implements ArgumentTransformer
16 15
 {
Please login to merge, or discard this patch.
PlaceholdersExtension/Transformation/RuntimePlaceholdersTransformation.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,11 +3,9 @@
 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\TableNode;
8 7
 use Behat\Testwork\Call\RuntimeCallee;
9 8
 use Ciandt\Behat\PlaceholdersExtension\Config\PlaceholdersRepository;
10
-use Ciandt\Behat\PlaceholdersExtension\PlaceholderContainer\PlaceholderContainer;
11 9
 use Ciandt\Behat\PlaceholdersExtension\PlaceholderContainer\PlaceholderContainerStepNode;
12 10
 
13 11
 /**
Please login to merge, or discard this patch.