Total Complexity | 4 |
Total Lines | 39 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class TestCase extends \Orchestra\Testbench\TestCase |
||
9 | { |
||
10 | public function setUp(): void |
||
11 | { |
||
12 | parent::setUp(); |
||
13 | |||
14 | $this->loadMigrationsFrom(__DIR__.'/../database/migrations'); |
||
15 | $this->setUpDatabase(); |
||
16 | } |
||
17 | |||
18 | |||
19 | /** |
||
20 | * {@inheritdoc} |
||
21 | */ |
||
22 | protected function getPackageProviders($app) |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * @param \Illuminate\Foundation\Application $app |
||
29 | */ |
||
30 | protected function getEnvironmentSetUp($app) |
||
39 | } |
||
40 | |||
41 | protected function setUpDatabase() |
||
51 | } |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.