| Total Complexity | 3 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | final class RequestConditional implements Authentication |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var RequestMatcher |
||
| 18 | */ |
||
| 19 | private $requestMatcher; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @var Authentication |
||
| 23 | */ |
||
| 24 | private $authentication; |
||
| 25 | |||
| 26 | public function __construct(RequestMatcher $requestMatcher, Authentication $authentication) |
||
| 30 | 4 | } |
|
| 31 | |||
| 32 | 4 | /** |
|
| 33 | 4 | * {@inheritdoc} |
|
| 34 | 4 | */ |
|
| 35 | public function authenticate(RequestInterface $request) |
||
| 44 |