1 | <?php |
||
15 | class PlaceholderArgumentTransformer implements ArgumentTransformer |
||
16 | { |
||
17 | /** |
||
18 | * @var PlaceholderBagInterface |
||
19 | */ |
||
20 | private $placeholderBag; |
||
21 | |||
22 | /** |
||
23 | * @param PlaceholderBagInterface $placeholderBag |
||
24 | */ |
||
25 | 8 | public function __construct(PlaceholderBagInterface $placeholderBag) |
|
29 | |||
30 | /** |
||
31 | * {@inheritdoc} |
||
32 | */ |
||
33 | 4 | public function supportsDefinitionAndArgument(DefinitionCall $definitionCall, $argumentIndex, $argumentValue) |
|
43 | |||
44 | /** |
||
45 | * {@inheritdoc} |
||
46 | */ |
||
47 | 4 | public function transformArgument(DefinitionCall $definitionCall, $argumentIndex, $argumentValue) |
|
56 | } |
||
57 |