Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
ObjectWithRelationIdentifier | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
getReferenceFor | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | namespace Apie\IntegrationTests\Apie\TypeDemo\Identifiers; |
3 | |
4 | use Apie\Core\Identifiers\IdentifierInterface; |
5 | use Apie\Core\Identifiers\Ulid; |
6 | use Apie\IntegrationTests\Apie\TypeDemo\Resources\ObjectWithRelation; |
7 | use ReflectionClass; |
8 | |
9 | /** |
10 | * @implements IdentifierInterface<ObjectWithRelation> |
11 | */ |
12 | final class ObjectWithRelationIdentifier extends Ulid implements IdentifierInterface |
13 | { |
14 | public static function getReferenceFor(): ReflectionClass |
15 | { |
16 | return new ReflectionClass(ObjectWithRelation::class); |
17 | } |
18 | } |