| Total Complexity | 3 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | final class CompositeHandler implements HandlerInterface |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @param HandlerInterface[] $handlers |
||
| 18 | */ |
||
| 19 | public function __construct( |
||
| 20 | private readonly array $handlers |
||
| 21 | ) { |
||
| 22 | } |
||
| 23 | |||
| 24 | public function handle(mixed $variable, int $depth, bool $highlight = false): void |
||
| 28 | } |
||
| 29 | } |
||
| 31 |