Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
ImageFileIdentifier | |
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\Identifiers; |
3 | |
4 | use Apie\Core\Identifiers\IdentifierInterface; |
5 | use Apie\Core\Identifiers\UuidV4; |
6 | use Apie\Fixtures\Entities\ImageFile; |
7 | use ReflectionClass; |
8 | |
9 | /** |
10 | * @implements IdentifierInterface<ImageFile> |
11 | */ |
12 | final class ImageFileIdentifier extends UuidV4 implements IdentifierInterface |
13 | { |
14 | public static function getReferenceFor(): ReflectionClass |
15 | { |
16 | return new ReflectionClass(ImageFile::class); |
17 | } |
18 | } |