Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
33 | 16 | public static function constructFromFixtures(array $fixtures): array |
|
34 | { |
||
35 | 16 | return static::sortList( |
|
36 | 16 | array_map( |
|
37 | 16 | function (FixtureInterface $fixture): Metadata { |
|
38 | 16 | return static::constructFromReflection(new ReflectionClass($fixture)); |
|
39 | 16 | }, |
|
40 | 16 | $fixtures |
|
41 | ) |
||
92 |