Total Complexity | 2 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
12 | class SqliteSessionInit implements EventSubscriber |
||
13 | { |
||
14 | /** |
||
15 | * @param \Doctrine\DBAL\Event\ConnectionEventArgs $args |
||
16 | */ |
||
17 | public function postConnect(ConnectionEventArgs $args): void |
||
18 | { |
||
19 | $args->getConnection()->exec('PRAGMA foreign_keys = on'); |
||
20 | } |
||
21 | |||
22 | /** |
||
23 | * @return string[] |
||
24 | */ |
||
25 | public function getSubscribedEvents(): array |
||
28 | } |
||
29 | } |
||
30 |