Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
26 | 1 | public function __construct( |
|
27 | $code, |
||
28 | User $model, |
||
29 | UserConfirmationService $userConfirmationService, |
||
30 | TokenQuery $tokenQuery |
||
31 | ) { |
||
32 | 1 | $this->code = $code; |
|
33 | 1 | $this->model = $model; |
|
34 | 1 | $this->userConfirmationService = $userConfirmationService; |
|
35 | 1 | $this->tokenQuery = $tokenQuery; |
|
36 | 1 | } |
|
37 | |||
55 |