1 | <?php |
||
2 | |||
3 | namespace Ikechukwukalu\Clamavfileupload\Tests; |
||
4 | |||
5 | use Ikechukwukalu\Clamavfileupload\ClamavFileUploadServiceProvider; |
||
6 | use Orchestra\Testbench\TestCase as BaseTestCase; |
||
7 | use Illuminate\Foundation\Testing\Concerns\InteractsWithExceptionHandling; |
||
8 | |||
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 |
||
0 ignored issues
–
show
|
|||
25 | { |
||
26 | return [ClamavFileUploadServiceProvider::class]; |
||
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.