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