Total Complexity | 3 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
10 | final class ConstantFetch implements ValuableNode |
||
11 | { |
||
12 | /** @var Identifier */ |
||
13 | private $name; |
||
14 | |||
15 | public function __construct(Identifier $name) |
||
16 | { |
||
17 | $this->name = $name; |
||
18 | } |
||
19 | |||
20 | public function getName() : Identifier |
||
23 | } |
||
24 | |||
25 | public function dispatch(Visitor $visitor) : void |
||
30 |