Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
6 / 6 |
|
100.00% |
2 / 2 |
CRAP | |
100.00% |
1 / 1 |
UserIdentifier | |
100.00% |
6 / 6 |
|
100.00% |
2 / 2 |
2 | |
100.00% |
1 / 1 |
getReferenceFor | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
toPermission | |
100.00% |
5 / 5 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | namespace Apie\IntegrationTests\Apie\TypeDemo\Identifiers; |
3 | |
4 | use Apie\CommonValueObjects\Email; |
5 | use Apie\Core\Identifiers\Identifier; |
6 | use Apie\Core\Identifiers\IdentifierInterface; |
7 | use Apie\Core\Permissions\AllPermission; |
8 | use Apie\Core\Permissions\PermissionInterface; |
9 | use Apie\IntegrationTests\Apie\TypeDemo\Resources\User; |
10 | use ReflectionClass; |
11 | |
12 | /** |
13 | * @implements IdentifierInterface<User> |
14 | */ |
15 | final class UserIdentifier extends Email implements IdentifierInterface |
16 | { |
17 | public static function getReferenceFor(): ReflectionClass |
18 | { |
19 | return new ReflectionClass(User::class); |
20 | } |
21 | |
22 | public function toPermission(): PermissionInterface |
23 | { |
24 | return new AllPermission( |
25 | Identifier::fromNative( |
26 | str_replace(['@', '.'], ['at' ,'dot'], $this->toNative()) |
27 | ) |
28 | ); |
29 | } |
30 | } |