Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
36 | 11 | public function __construct(array $config, LoggerInterface $logger) { |
|
37 | 11 | $this->logger = $logger; |
|
38 | |||
39 | // Set the OCRA suite |
||
40 | 11 | $this->_ocraSuite = $config['ocra.suite'] ?? 'OCRA-1:HOTP-SHA1-6:QH10-S'; // Use tiqr server default suite |
|
41 | 11 | $this->_ocraParser = new OATH_OCRAParser($this->_ocraSuite); |
|
42 | 11 | } |
|
55 | } |