| Total Complexity | 4 |
| Total Lines | 37 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | final class AggregateSchemaProvider |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var string[] |
||
| 13 | * |
||
| 14 | * @phpstan-var array<class-string<SpecifiesSchema>> |
||
| 15 | */ |
||
| 16 | private $aggregateClasses; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param string[] $aggregateClasses |
||
| 20 | * |
||
| 21 | * @phpstan-param array<class-string<SpecifiesSchema>> $aggregateClasses |
||
| 22 | */ |
||
| 23 | 30 | public function __construct(array $aggregateClasses) |
|
| 27 | 30 | } |
|
| 28 | |||
| 29 | 30 | public function createSchema(): Schema |
|
| 48 |