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