1 | <?php |
||
17 | final class TokensReplacementCall extends EnvironmentCall |
||
18 | { |
||
19 | /** |
||
20 | * @var StepNode |
||
21 | */ |
||
22 | private $step; |
||
23 | |||
24 | /** |
||
25 | * Initializes call. |
||
26 | * |
||
27 | * @param Environment $environment |
||
28 | * @param TokensReplacement $tokensReplacement |
||
29 | * @param array $arguments |
||
30 | */ |
||
31 | public function __construct( |
||
41 | |||
42 | /** |
||
43 | * Returns modified step after tokens replacements. |
||
44 | * |
||
45 | * @todo: Is it used? |
||
46 | * @return StepNode |
||
47 | */ |
||
48 | public function getStep() |
||
52 | } |
||
53 |