| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | public function register(ContainerInterface $app) |
||
| 14 | { |
||
| 15 | $app->bind(Configuration::class, function (Config $config) { |
||
| 16 | return new Configuration([ |
||
| 17 | 'connection' => $config->get('database.migrator.connection'), |
||
| 18 | 'table' => $config->get('database.migrator.table'), |
||
| 19 | 'path' => $config->get('database.migrator.path'), |
||
| 20 | ]); |
||
| 21 | }); |
||
| 22 | } |
||
| 23 | |||
| 31 |