| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | protected function setUp() : void |
||
| 13 | { |
||
| 14 | parent::setUp(); |
||
| 15 | |||
| 16 | Warning::$enabled = false; // we will ignore `MySQL server has gone away` warnings |
||
| 17 | |||
| 18 | if ($this->connection->getDatabasePlatform() instanceof MySqlPlatform) { |
||
| 19 | return; |
||
| 20 | } |
||
| 21 | |||
| 22 | $this->markTestSkipped('Restricted to MySQL.'); |
||
| 23 | } |
||
| 44 |