| 1 | <?php |
||
| 14 | class DebugProvider implements AuthenticationProviderInterface |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var array |
||
| 18 | */ |
||
| 19 | private $debugRoles; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @param array $debugRoles |
||
| 23 | * |
||
| 24 | * @return DebugProvider |
||
| 25 | */ |
||
| 26 | public function setDebugRoles($debugRoles) |
||
| 32 | |||
| 33 | /** |
||
| 34 | * {@inheritdoc} |
||
| 35 | */ |
||
| 36 | public function authenticate(TokenInterface $token) |
||
| 42 | |||
| 43 | /** |
||
| 44 | * {@inheritdoc} |
||
| 45 | */ |
||
| 46 | public function supports(TokenInterface $token) |
||
| 50 | } |
||
| 51 |