Total Complexity | 3 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
12 | class CodeChallenge implements CodeChallengeInterface |
||
13 | { |
||
14 | protected $codeChallenge; |
||
15 | protected $codeChallengeMethod; |
||
16 | |||
17 | public function __construct(string $codeChallenge, string $codeChallengeMethod) |
||
18 | { |
||
19 | $this->codeChallenge = $codeChallenge; |
||
20 | $this->codeChallengeMethod = $codeChallengeMethod; |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * @return mixed |
||
25 | */ |
||
26 | public function getCodeChallenge(): string |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * @return string |
||
33 | */ |
||
34 | public function getCodeChallengeMethod(): string |
||
37 | } |
||
38 | |||
39 | } |