| Total Complexity | 3 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| 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 | $this->faker = Factory::create('tr_TR'); |
||
| 19 | } |
||
| 20 | |||
| 21 | protected function getPackageProviders($app): array |
||
| 25 | ]; |
||
| 26 | } |
||
| 27 | |||
| 28 | protected function getEnvironmentSetUp($app): void |
||
| 31 | } |
||
| 32 | } |
||
| 33 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.