| Total Complexity | 3 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | final class CompositePresenter implements AttributePresenterInterface |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @param AttributePresenterInterface[] $presenters |
||
| 13 | */ |
||
| 14 | 2 | public function __construct(private array $presenters) |
|
| 16 | 2 | } |
|
| 17 | |||
| 18 | /** |
||
| 19 | * @inheritDoc |
||
| 20 | */ |
||
| 21 | 2 | public function present(ReflectionClass $class, array $attributes): iterable |
|
| 28 |