| @@ -32,7 +32,6 @@ | ||
| 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){ | 
| @@ -62,7 +62,7 @@ | ||
| 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; | 
| @@ -25,6 +25,9 @@ | ||
| 25 | 25 | return self::USER_DEFINED_PLACEHOLDER_REGEX; | 
| 26 | 26 | } | 
| 27 | 27 | |
| 28 | + /** | |
| 29 | + * @param string $string | |
| 30 | + */ | |
| 28 | 31 |      private static function replaceStringPlaceholders($string, PlaceholdersRepository $repository, PlaceholderContainerStepNode $container) { | 
| 29 | 32 | preg_match_all(self::USER_DEFINED_PLACEHOLDER_REGEX, $string, $matches, PREG_SET_ORDER); | 
| 30 | 33 |          foreach ($matches as $match) { | 
| @@ -10,7 +10,6 @@ | ||
| 10 | 10 | |
| 11 | 11 | /** | 
| 12 | 12 | * Transforms a single argument value. | 
| 13 | - | |
| 14 | 13 | */ | 
| 15 | 14 | class PlaceholdersTransformer implements ArgumentTransformer | 
| 16 | 15 |  { |