Total Complexity | 3 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | abstract class BaseTestCase extends OrchestraTestCase |
||
10 | { |
||
11 | public function setUp() : void |
||
14 | |||
15 | // $this->setUpDatabase(); |
||
16 | } |
||
17 | |||
18 | protected function getPackageProviders($app) |
||
23 | ]; |
||
24 | } |
||
25 | |||
26 | /** |
||
27 | * Set up the environment. |
||
28 | * |
||
29 | * @param \Illuminate\Foundation\Application $app |
||
30 | */ |
||
31 | protected function getEnvironmentSetUp($app) |
||
47 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.