Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
MixedTypesIdentifier | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
getReferenceFor | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | namespace Apie\Fixtures\Entities\Polymorphic; |
3 | |
4 | use Apie\Core\Identifiers\IdentifierInterface; |
5 | use Apie\Core\Identifiers\UuidV4; |
6 | use ReflectionClass; |
7 | |
8 | class MixedTypesIdentifier extends UuidV4 implements IdentifierInterface |
9 | { |
10 | public static function getReferenceFor(): ReflectionClass |
11 | { |
12 | return new ReflectionClass(MixedTypes::class); |
13 | } |
14 | } |