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 | * @var string |
||
21 | */ |
||
22 | private $pushbackAuthsource; |
||
23 | |||
24 | public function __construct(array $info, array $config) |
||
25 | { |
||
26 | parent::__construct($info, $config); |
||
27 | |||
28 | $this->pushbackAuthsource = $this->authSourceConfig->getString("password_authsource"); |
||
29 | } |
||
30 | |||
31 | public function authenticate(array &$state): void |
||
38 | } |
||
39 | } |
||
40 |