| Total Complexity | 3 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | class AuthHandlerCollection implements AuthHandlerCollectionInterface |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var array|AuthHandlerInterface[] |
||
| 15 | */ |
||
| 16 | private $handlers; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param AuthHandlerInterface[] $handlers |
||
| 20 | */ |
||
| 21 | public function __construct(array $handlers) |
||
| 24 | } |
||
| 25 | |||
| 26 | /** |
||
| 27 | * {@inheritdoc} |
||
| 28 | */ |
||
| 29 | public function get(AuthConfigInterface $config): AuthHandlerInterface |
||
| 44 |