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