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