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