| 1 | <?php |
||
| 20 | final class FunctionCallScoperNodeVisitor extends NodeVisitorAbstract |
||
| 21 | { |
||
| 22 | private $prefix; |
||
| 23 | private $functions; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param string $prefix |
||
| 27 | * @param string[] $functions Functions which first parameter should be prefixed. |
||
| 28 | */ |
||
| 29 | public function __construct($prefix, array $functions) |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @inheritdoc |
||
| 37 | */ |
||
| 38 | public function enterNode(Node $node) |
||
| 66 | } |
||
| 67 |