Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
30 | protected function getEnvironmentSetUp($app) |
||
31 | { |
||
32 | $app['config']->set('database.default', 'sqlite'); |
||
33 | $app['config']->set('database.connections.sqlite', [ |
||
34 | 'driver' => 'sqlite', |
||
35 | 'database' => ':memory:', |
||
36 | 'prefix' => '', |
||
37 | ]); |
||
38 | $app['config']->set('app.key', 'base64:MFOsOH9RomiI2LRdgP4hIeoQJ5nyBhdABdH77UY2zi8='); |
||
39 | } |
||
51 | } |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.