| Total Complexity | 4 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class TransactionTest extends DbalFunctionalTestCase |
||
| 11 | { |
||
| 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 | } |
||
| 24 | |||
| 25 | protected function tearDown() : void |
||
| 31 | } |
||
| 32 | |||
| 33 | public function testCommitFalse() : void |
||
| 44 |