| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | public function getEnvironmentSetUp($app) |
||
| 26 | { |
||
| 27 | $app['config']->set('database.default', 'sqlite'); |
||
| 28 | $app['config']->set('database.connections.sqlite', [ |
||
| 29 | 'driver' => 'sqlite', |
||
| 30 | 'database' => ':memory:', |
||
| 31 | 'prefix' => '', |
||
| 32 | ]); |
||
| 33 | // $app['config']->set('payu.gateways, '); |
||
| 34 | |||
| 35 | include_once __DIR__ . '/../database/migrations/create_payu_transactions_table.php'; |
||
| 36 | (new CreatePayuTransactionsTable())->up(); |
||
| 37 | } |
||
| 38 | } |
||
| 39 |