| Total Complexity | 4 | 
| Total Lines | 18 | 
| Duplicated Lines | 0 % | 
| Coverage | 100% | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 23 | final class EvalPrefixer extends NodeVisitorAbstract | ||
| 24 | { | ||
| 25 | private StringNodePrefixer $stringPrefixer; | ||
| 26 | |||
| 27 | public function __construct(StringNodePrefixer $stringPrefixer) | ||
| 28 |     { | ||
| 29 | $this->stringPrefixer = $stringPrefixer; | ||
| 30 | 548 | } | |
| 31 | |||
| 32 | 548 | public function enterNode(Node $node): Node | |
| 41 | } | ||
| 42 | } | ||
| 43 |