| 1 | <?php |
||
| 11 | class SmsAuthenticator implements AuthenticationProviderInterface |
||
| 12 | { |
||
| 13 | |||
| 14 | private $code; |
||
| 15 | private $logger; |
||
| 16 | private $name; |
||
| 17 | |||
| 18 | 18 | public function __construct($name, $code, $logger) |
|
| 24 | |||
| 25 | 3 | public function supports(TokenInterface $token) |
|
| 30 | |||
| 31 | 6 | public function authenticate(TokenInterface $token) |
|
| 42 | } |
||
| 43 |