| Total Complexity | 3 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | class ResetPasswordAttempt implements Contract |
||
| 26 | { |
||
| 27 | public function __construct( |
||
| 28 | protected RetrievalByResetToken $retrieval, |
||
| 29 | protected string $password, |
||
| 30 | ) { |
||
| 31 | } |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @inheritDoc |
||
| 35 | */ |
||
| 36 | public function getRetrieval(): Retrieval |
||
| 37 | { |
||
| 38 | return $this->retrieval; |
||
| 39 | } |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @inheritDoc |
||
| 43 | */ |
||
| 44 | public function getPassword(): string |
||
| 47 | } |
||
| 48 | } |
||
| 49 |