| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | final class Authentication |
||
| 19 | { |
||
| 20 | /** @var string */ |
||
| 21 | private $token; |
||
| 22 | |||
| 23 | /** @var string */ |
||
| 24 | private $basic; |
||
| 25 | |||
| 26 | 5 | public function __construct(string $login, string $password, string $token) |
|
| 31 | 5 | } |
|
| 32 | |||
| 33 | 1 | public function authenticate(RequestInterface $request): RequestInterface |
|
| 40 |