Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
30 | protected function getEnvironmentSetUp($app) |
||
31 | { |
||
32 | $app['config']->set('database.default', 'testbench'); |
||
33 | $app['config']->set('database.connections.testbench', [ |
||
34 | 'driver' => 'sqlite', |
||
35 | 'database' => ':memory:', |
||
36 | ]); |
||
37 | |||
38 | $app['config']->set('translation.locales', [ |
||
39 | 'en' => 'English', |
||
40 | 'fr' => 'French', |
||
41 | ]); |
||
42 | |||
43 | $app['config']->set('translation.key', 123456); |
||
44 | } |
||
66 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.