Total Complexity | 2 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
10 | class CredentialWriter implements CredentialWriterInterface |
||
11 | { |
||
12 | /** |
||
13 | * @var \Xervice\User\UserQueryContainerInterface |
||
14 | */ |
||
15 | private $queryContainer; |
||
16 | |||
17 | /** |
||
18 | * CredentialWriter constructor. |
||
19 | * |
||
20 | * @param \Xervice\User\UserQueryContainerInterface $queryContainer |
||
21 | */ |
||
22 | 1 | public function __construct(UserQueryContainerInterface $queryContainer) |
|
25 | 1 | } |
|
26 | |||
27 | /** |
||
28 | * @param \DataProvider\UserCredentialDataProvider $userCredentialDataProvider |
||
29 | * |
||
30 | * @throws \Propel\Runtime\Exception\PropelException |
||
31 | */ |
||
32 | 1 | public function updateCredential(UserCredentialDataProvider $userCredentialDataProvider): void |
|
39 | } |