1 | <?php |
||
2 | |||
3 | namespace Ikechukwukalu\Databasebackup\Tests; |
||
4 | |||
5 | use Ikechukwukalu\Databasebackup\DatabaseBackupServiceProvider; |
||
6 | use Orchestra\Testbench\TestCase as BaseTestCase; |
||
7 | |||
8 | abstract class TestCase extends BaseTestCase |
||
9 | { |
||
10 | public function setUp(): void |
||
11 | { |
||
12 | parent::setUp(); |
||
13 | } |
||
14 | |||
15 | protected function defineDatabaseMigrations() |
||
16 | { |
||
17 | $this->loadLaravelMigrations(); |
||
18 | } |
||
19 | |||
20 | protected function getPackageProviders($app): array |
||
0 ignored issues
–
show
|
|||
21 | { |
||
22 | return [DatabaseBackupServiceProvider::class]; |
||
23 | } |
||
24 | } |
||
25 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.