| 1 | <?php declare(strict_types = 1); |
||
| 18 | class NoopProvider implements AuthenticationProviderInterface |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * {@inheritdoc} |
||
| 22 | * |
||
| 23 | * @throws \BadMethodCallException |
||
| 24 | */ |
||
| 25 | public function authenticate(TokenInterface $token) |
||
| 29 | |||
| 30 | /** |
||
| 31 | * {@inheritdoc} |
||
| 32 | */ |
||
| 33 | public function supports(TokenInterface $token) |
||
| 37 | } |
||
| 38 |