| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | class Register implements AuthenticatorInterface |
||
| 20 | { |
||
| 21 | private $requestDto; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Register constructor. |
||
| 25 | * @param RequestDtoInterface $requestDto |
||
| 26 | */ |
||
| 27 | public function __construct( |
||
| 31 | } |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @inheritDoc |
||
| 35 | * This is sort of stub until we decide to use this class actively |
||
| 36 | */ |
||
| 37 | public function authenticate(RequestDtoInterface $credentials): RequestDtoInterface |
||
| 42 |