| Total Complexity | 5 |
| Total Lines | 33 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | final class Chain implements Authentication |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var Authentication[] |
||
| 17 | */ |
||
| 18 | private $authenticationChain = []; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param Authentication[] $authenticationChain |
||
| 22 | */ |
||
| 23 | 4 | public function __construct(array $authenticationChain = []) |
|
| 34 | 3 | } |
|
| 35 | |||
| 36 | /** |
||
| 37 | * {@inheritdoc} |
||
| 38 | */ |
||
| 39 | 1 | public function authenticate(RequestInterface $request) |
|
| 48 |