Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
49 | public function invokeTest(): void |
||
50 | { |
||
51 | $configuration = $this->getConfiguration(); |
||
52 | $results = []; |
||
53 | |||
54 | $results = array_merge($results, $this->testCertificates($configuration)); |
||
55 | $results = array_merge($results, $this->testDatabase($configuration)); |
||
56 | |||
57 | foreach ($results as $result) { |
||
58 | $this->addTestResult($result); |
||
59 | } |
||
60 | $this->calculateState(); |
||
61 | } |
||
63 |