| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 2.032 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 15 | 50 | public function postConnect(ConnectionEventArgs $args) : void |
|
| 16 | { |
||
| 17 | 50 | $args->getConnection()->exec('PRAGMA foreign_keys = on'); |
|
| 18 | |||
| 19 | 50 | if (! ($args->getDatabasePlatform() instanceof SqlitePlatform)) { |
|
| 20 | 50 | return; |
|
| 21 | } |
||
| 22 | |||
| 23 | $args->getDatabasePlatform()->enableForeignKeyConstraintsSupport(); |
||
| 24 | } |
||
| 34 |