| Total Complexity | 3 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | abstract class TestCase extends Orchestra |
||
| 11 | { |
||
| 12 | protected Generator $faker; |
||
| 13 | |||
| 14 | public function setUp(): void |
||
| 15 | { |
||
| 16 | parent::setUp(); |
||
| 17 | |||
| 18 | config()->set('app.faker_locale', 'tr_TR'); |
||
| 19 | |||
| 20 | $this->faker = Factory::create(); |
||
| 21 | } |
||
| 22 | |||
| 23 | protected function getPackageProviders($app): array |
||
| 27 | ]; |
||
| 28 | } |
||
| 29 | |||
| 30 | protected function getEnvironmentSetUp($app): void |
||
| 33 | } |
||
| 34 | } |
||
| 35 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.