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