| Total Complexity | 3 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 7 | class TestCase extends \Orchestra\Testbench\TestCase |
||
| 8 | { |
||
| 9 | public function setUp(): void |
||
| 10 | { |
||
| 11 | parent::setUp(); |
||
| 12 | // additional setup |
||
| 13 | } |
||
| 14 | |||
| 15 | protected function getPackageProviders($app) |
||
|
|
|||
| 16 | { |
||
| 17 | return [ |
||
| 18 | AdmineticServiceProvider::class, |
||
| 19 | ]; |
||
| 20 | } |
||
| 21 | |||
| 22 | protected function getEnvironmentSetUp($app) |
||
| 24 | // perform environment setup |
||
| 25 | } |
||
| 26 | } |
||
| 27 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.