| Total Complexity | 3 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | final class VerifyPassword |
||
| 9 | { |
||
| 10 | private $identity; |
||
| 11 | private $password; |
||
| 12 | |||
| 13 | 3 | public function __construct(Identity $identity, string $password) |
|
| 17 | 3 | } |
|
| 18 | |||
| 19 | 3 | public function identity(): Identity |
|
| 20 | { |
||
| 21 | 3 | return $this->identity; |
|
| 22 | } |
||
| 23 | |||
| 24 | 3 | public function password(): string |
|
| 27 | } |
||
| 28 | } |
||
| 29 |