Total Complexity | 5 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | final class VarDumperCollector implements SummaryCollectorInterface |
||
8 | { |
||
9 | use CollectorTrait; |
||
10 | |||
11 | private array $vars = []; |
||
12 | |||
13 | public function collectVar(mixed $variable, string $line): void |
||
18 | ]; |
||
19 | } |
||
20 | |||
21 | public function getCollected(): array |
||
29 | ]; |
||
30 | } |
||
31 | |||
32 | public function getSummary(): array |
||
45 |