Total Complexity | 3 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
16 | class FunctionCallVisitor extends NodeVisitorAbstract { |
||
17 | |||
18 | /** |
||
19 | * The visitor write pad. |
||
20 | * |
||
21 | * @var array |
||
22 | */ |
||
23 | public $pad; |
||
24 | |||
25 | /** |
||
26 | * FunctionCallVisitor constructor. |
||
27 | */ |
||
28 | public function __construct() { |
||
29 | $this->pad = []; |
||
30 | } |
||
31 | |||
32 | /** |
||
33 | * {@inheritdoc} |
||
34 | */ |
||
35 | public function enterNode(Node $node) { |
||
39 | } |
||
40 | } |
||
43 |