| Conditions | 2 |
| Paths | 2 |
| Total Lines | 14 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | protected function checkImplementation(Result $result, Varien_Db_Adapter_Interface $dbAdapter) |
||
| 21 | { |
||
| 22 | $innodbFound = $this->checkInnodbEngine($dbAdapter); |
||
| 23 | |||
| 24 | if ($innodbFound) { |
||
| 25 | $result->setStatus(Result::STATUS_OK); |
||
| 26 | $result->setMessage("<info>Required MySQL Storage Engine <comment>InnoDB</comment> found.</info>"); |
||
| 27 | } else { |
||
| 28 | $result->setStatus(Result::STATUS_ERROR); |
||
| 29 | $result->setMessage( |
||
| 30 | "<error>Required MySQL Storage Engine <comment>InnoDB</comment> not found!</error>" |
||
| 31 | ); |
||
| 32 | } |
||
| 33 | } |
||
| 34 | |||
| 55 |