Total Complexity | 3 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
17 | class CodeChallenge implements CodeChallengeInterface |
||
|
|||
18 | { |
||
19 | protected $codeChallenge; |
||
20 | protected $codeChallengeMethod; |
||
21 | |||
22 | public function __construct(string $codeChallenge, string $codeChallengeMethod) |
||
23 | { |
||
24 | $this->codeChallenge = $codeChallenge; |
||
25 | $this->codeChallengeMethod = $codeChallengeMethod; |
||
26 | } |
||
27 | |||
28 | /** |
||
29 | * @return mixed |
||
30 | */ |
||
31 | public function getCodeChallenge(): string |
||
34 | } |
||
35 | |||
36 | /** |
||
37 | * @return string |
||
38 | */ |
||
39 | public function getCodeChallengeMethod(): string |
||
42 | } |
||
43 | |||
44 | } |
This interface has been deprecated. The supplier of the interface has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the interface will be removed and what other interface to use instead.