| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | public function createApplication() |
||
| 13 | { |
||
| 14 | $app = parent::createApplication(); |
||
| 15 | |||
| 16 | $app['config']->set('database.default', 'pgsql'); |
||
| 17 | $app['config']->set('database.connections.pgsql.host', env('DB_HOST', '127.0.0.1')); |
||
| 18 | $app['config']->set('database.connections.pgsql.database', 'spatial_test'); |
||
| 19 | $app['config']->set('database.connections.pgsql.username', 'postgres'); |
||
| 20 | $app['config']->set('database.connections.pgsql.password', ''); |
||
| 21 | |||
| 22 | return $app; |
||
| 23 | } |
||
| 30 |