| 1 | <?php |
||
| 15 | class PlaceholdersTransformer implements ArgumentTransformer |
||
| 16 | { |
||
| 17 | |||
| 18 | private $repository; |
||
| 19 | |||
| 20 | public function __construct(PlaceholdersRepository $repository) { |
||
| 21 | $this->repository = $repository; |
||
| 22 | } |
||
| 23 | |||
| 24 | |||
| 25 | public function supportsDefinitionAndArgument(DefinitionCall $definitionCall, $argumentIndex, $argumentValue) { |
||
| 28 | |||
| 29 | public function transformArgument(DefinitionCall $definitionCall, $argumentIndex, $argumentValue) { |
||
| 35 | |||
| 36 | } |
||
| 37 |