Total Complexity | 3 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
11 | final class IdentityWasCreated |
||
12 | { |
||
13 | private $identity; |
||
14 | private $email; |
||
15 | |||
16 | 16 | public function __construct(Identity $identity, Email $email) |
|
17 | { |
||
18 | 16 | $this->identity = $identity; |
|
19 | 16 | $this->email = $email; |
|
20 | 16 | } |
|
21 | |||
22 | 2 | public function identity(): Identity |
|
25 | } |
||
26 | |||
27 | 2 | public function email(): Email |
|
32 |