| Total Complexity | 4 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class ChallengeAuthorizationKey { |
||
| 9 | |||
| 10 | private $_account; |
||
| 11 | |||
| 12 | public function __construct(Account $account) { |
||
| 13 | $this->_account = $account; |
||
| 14 | } |
||
| 15 | |||
| 16 | public function get(string $token) : string { |
||
| 18 | } |
||
| 19 | |||
| 20 | public function getEncoded(string $token) : string { |
||
| 23 | ); |
||
| 24 | } |
||
| 25 | |||
| 26 | private function _getDigest() : string { |
||
| 38 | } |
||
| 39 | } |