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