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 | public function __construct(array $authenticationChain = []) |
||
35 | |||
36 | /** |
||
37 | * {@inheritdoc} |
||
38 | */ |
||
39 | public function authenticate(RequestInterface $request) |
||
47 | } |
||
48 |