| Total Complexity | 3 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | final class CompositeHandler implements HandlerInterface |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @param HandlerInterface[] $handlers |
||
| 13 | */ |
||
| 14 | 1 | public function __construct( |
|
| 15 | private array $handlers |
||
| 16 | ) { |
||
| 17 | 1 | } |
|
| 18 | |||
| 19 | 1 | public function handle(mixed $variable, int $depth, bool $highlight = false): void |
|
| 23 | } |
||
| 24 | } |
||
| 26 |