Total Complexity | 4 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | class UseCaseCommand implements UseCaseCommandInterface |
||
20 | { |
||
21 | private $request; |
||
22 | |||
23 | private $credentials; |
||
24 | |||
25 | public function setRequest(RequestDtoInterface $dto): UseCaseCommandInterface |
||
26 | { |
||
27 | $this->request = $dto; |
||
28 | return $this; |
||
29 | } |
||
30 | |||
31 | public function setCredentials(RequestDtoInterface $dto): UseCaseCommandInterface |
||
32 | { |
||
33 | $this->credentials = $dto; |
||
34 | return $this; |
||
35 | } |
||
36 | |||
37 | public function getRequest(): RequestDtoInterface |
||
40 | } |
||
41 | |||
42 | public function getCredentials(): RequestDtoInterface |
||
45 | } |
||
46 | } |
||
47 |