| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 34 | protected function getEnvironmentSetUp($app) |
||
| 35 | { |
||
| 36 | // Setup default database to use sqlite :memory: |
||
| 37 | $app['config']->set('database.default', 'testbench'); |
||
| 38 | $app['config']->set('database.connections.testbench', [ |
||
| 39 | 'driver' => 'sqlite', |
||
| 40 | 'database' => ':memory:', |
||
| 41 | 'prefix' => '', |
||
| 42 | ]); |
||
| 58 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.