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
Pull Request — master (#9)
by
unknown
07:32
created
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.
src/Ciandt/Behat/PlaceholdersExtension/Config/PlaceholdersRepository.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,6 @@
 block discarded – undo
47 47
     /**
48 48
      * reads the YAML placeholder definitions and returns an associative array
49 49
      *
50
-     * @param type $config_files
51 50
      * @todo use %paths.base% value
52 51
      * @return array
53 52
      */
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
 
72 72
     private function getFilePath($key)
73 73
     {
74
-         if (key_exists($key, $this->configs)) {
74
+          if (key_exists($key, $this->configs)) {
75 75
             return $this->configs[$key]['path'];
76 76
         }
77 77
         return null;
Please login to merge, or discard this patch.
PlaceholdersExtension/Transformation/RuntimePlaceholdersTransformation.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -34,6 +34,9 @@
 block discarded – undo
34 34
         return $string;
35 35
     }
36 36
 
37
+    /**
38
+     * @param PlaceholdersRepository $repository
39
+     */
37 40
     public static function transformArgument($argument, $repository) {
38 41
         if (is_string($argument)) {
39 42
             return self::replaceStringPlaceholders($argument, $repository);
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
 /**
15 15
  *
16 16
  */
17
- class RuntimePlaceholdersTransformation extends RuntimeCallee implements PlaceholdersTransformation {
17
+  class RuntimePlaceholdersTransformation extends RuntimeCallee implements PlaceholdersTransformation {
18 18
 
19 19
     public function __toString() {
20 20
         return 'UserDefinedPlaceholderTransform';
Please login to merge, or discard this patch.