| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 25 | protected function configure(): void |
||
| 26 | { |
||
| 27 | // @Transactional |
||
| 28 | $this->install(new TransactionalModule()); |
||
| 29 | $this->install(new AuraSqlPagerModule()); |
||
| 30 | preg_match(AuraSqlModule::PARSE_PDO_DSN_REGEX, $this->dsn, $parts); |
||
| 31 | $dbType = $parts[1] ?? ''; |
||
| 32 | $this->install(new AuraSqlQueryModule($dbType)); |
||
| 33 | } |
||
| 35 |