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