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