1 | <?php |
||
2 | |||
3 | namespace DummyNamespace\Tests; |
||
4 | |||
5 | class TestCase extends \Orchestra\Testbench\TestCase |
||
6 | { |
||
7 | use Traits\TestCaseTrait; |
||
8 | |||
9 | /** |
||
10 | * Load Package Service Provider. |
||
11 | * |
||
12 | * @param \Illuminate\Foundation\Application $app |
||
13 | * |
||
14 | * @return array List of Service Provider |
||
15 | */ |
||
16 | protected function getPackageProviders($app) |
||
0 ignored issues
–
show
|
|||
17 | { |
||
18 | return [ |
||
19 | \DummyNamespace\DummyClassNameServiceProvider::class, |
||
20 | ]; |
||
21 | } |
||
22 | } |
||
23 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.