| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 30 | public function preFlush(PreFlushEventArgs $args): void |
||
|
|
|||
| 31 | { |
||
| 32 | if (!$this->manager->getConnection()->getDatabasePlatform() instanceof SqlitePlatform) { |
||
| 33 | return; |
||
| 34 | } |
||
| 35 | |||
| 36 | $this->manager |
||
| 37 | ->createNativeQuery('PRAGMA foreign_keys = ON;', new ResultSetMapping()) |
||
| 38 | ->execute() |
||
| 39 | ; |
||
| 40 | } |
||
| 41 | } |
||
| 42 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.