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