Total Complexity | 6 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | final class Aaid implements IdentifierInterface |
||
8 | { |
||
9 | public const TYPE = 'aaid'; |
||
10 | |||
11 | /** |
||
12 | * @var string |
||
13 | */ |
||
14 | private $aaid; |
||
15 | |||
16 | public function __construct(string $aaid) |
||
23 | } |
||
24 | |||
25 | public function getType(): string |
||
26 | { |
||
27 | return self::TYPE; |
||
28 | } |
||
29 | |||
30 | public function toString(): string |
||
31 | { |
||
32 | return $this->aaid; |
||
33 | } |
||
34 | |||
35 | public function equals(IdentifierInterface $identifier): bool |
||
38 | } |
||
39 | } |
||
40 |