Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
6 / 6
100.00% covered (success)
100.00%
2 / 2
CRAP
100.00% covered (success)
100.00%
1 / 1
UserIdentifier
100.00% covered (success)
100.00%
6 / 6
100.00% covered (success)
100.00%
2 / 2
2
100.00% covered (success)
100.00%
1 / 1
 getReferenceFor
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 toPermission
100.00% covered (success)
100.00%
5 / 5
100.00% covered (success)
100.00%
1 / 1
1
1<?php
2namespace Apie\IntegrationTests\Apie\TypeDemo\Identifiers;
3
4use Apie\CommonValueObjects\Email;
5use Apie\Core\Identifiers\Identifier;
6use Apie\Core\Identifiers\IdentifierInterface;
7use Apie\Core\Permissions\AllPermission;
8use Apie\Core\Permissions\PermissionInterface;
9use Apie\IntegrationTests\Apie\TypeDemo\Resources\User;
10use ReflectionClass;
11
12/**
13 * @implements IdentifierInterface<User>
14 */
15final 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}