| Total Complexity | 3 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | abstract class TestCase extends BaseTestCase |
||
| 10 | { |
||
| 11 | use InteractsWithExceptionHandling; |
||
| 12 | |||
| 13 | public function setUp(): void |
||
| 14 | { |
||
| 15 | parent::setUp(); |
||
| 16 | } |
||
| 17 | |||
| 18 | protected function defineDatabaseMigrations() |
||
| 19 | { |
||
| 20 | $this->loadLaravelMigrations(); |
||
| 21 | $this->loadMigrationsFrom(__DIR__.'/../src/migrations'); |
||
| 22 | } |
||
| 23 | |||
| 24 | protected function getPackageProviders($app): array |
||
| 27 | } |
||
| 28 | } |
||
| 29 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.