Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | public function up(): void |
||
15 | { |
||
16 | // Strip phpMyAdmin versions in `reports` table |
||
17 | $count = $this->_sanitizeVersionsInTable('reports'); |
||
18 | Log::debug($count . ' reports updated'); |
||
19 | |||
20 | // Strip phpMyAdmin versions in `incidents` table |
||
21 | $count = $this->_sanitizeVersionsInTable('incidents'); |
||
22 | Log::debug($count . ' incidents updated'); |
||
23 | } |
||
58 |