Total Complexity | 4 |
Total Lines | 41 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | class TokenDecorator implements TokenResponderInterface |
||
23 | { |
||
24 | use BaseDto; |
||
25 | |||
26 | private $success; |
||
|
|||
27 | |||
28 | private $accessToken; |
||
29 | |||
30 | private $accessTokenValidity; |
||
31 | |||
32 | private $message; |
||
33 | |||
34 | /** |
||
35 | * @inheritDoc |
||
36 | */ |
||
37 | public function process(ContractResponseInterface $response): TokenResponderInterface |
||
43 | } |
||
44 | |||
45 | /** |
||
46 | * @param $content |
||
47 | */ |
||
48 | private function launchSuccess($content) |
||
54 | } |
||
55 | |||
56 | /** |
||
57 | * @param $content |
||
58 | */ |
||
59 | private function launchFailed($content) |
||
65 |