Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
45 | 2 | public function run(IOutput $output) { |
|
46 | 2 | $output->startProgress(1); |
|
47 | 2 | if ($this->connection->tableExists('ocr_status')) { |
|
48 | 1 | $this->connection->dropTable('ocr_status'); |
|
49 | } |
||
50 | 2 | $output->advance(1, "Drop old database table: ocr_status"); |
|
51 | 2 | $output->finishProgress(); |
|
52 | 2 | } |
|
53 | |||
54 | } |