| Total Complexity | 2 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | class Supercharged extends Passwordless |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * The AuthSource to use when someone enters a username/password |
||
| 19 | */ |
||
| 20 | private string $pushbackAuthsource; |
||
| 21 | |||
| 22 | |||
| 23 | public function __construct(array $info, array $config) |
||
| 24 | { |
||
| 25 | parent::__construct($info, $config); |
||
| 26 | |||
| 27 | $this->pushbackAuthsource = $this->authSourceConfig->getString("password_authsource"); |
||
| 28 | } |
||
| 29 | |||
| 30 | |||
| 31 | public function authenticate(array &$state): void |
||
| 38 | } |
||
| 39 | } |
||
| 40 |