| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 21 | public function __construct() { |
||
| 22 | $this->factory = new Factory( DriverManager::getConnection( |
||
| 23 | $this->newConnectionDetails() |
||
| 24 | ) ); |
||
| 25 | |||
| 26 | try { |
||
| 27 | $this->factory->newInstaller()->uninstall(); |
||
| 28 | } |
||
| 29 | catch ( \Exception $ex ) { |
||
|
|
|||
| 30 | } |
||
| 31 | |||
| 32 | $this->factory->newInstaller()->install(); |
||
| 33 | } |
||
| 34 | |||
| 65 |