| Total Complexity | 4 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 10 | abstract class TestCase extends TestbenchTestCase |
||
| 11 | { |
||
| 12 | |||
| 13 | protected function getPackageProviders($app): array |
||
|
|
|||
| 14 | { |
||
| 15 | return [ServiceProvider::class]; |
||
| 16 | } |
||
| 17 | |||
| 18 | protected function getPackageAliases($app): array |
||
| 19 | { |
||
| 20 | return ['TurboSMS' => TurboSMS::class]; |
||
| 21 | } |
||
| 22 | |||
| 23 | protected function resolveApplicationConfiguration($app): void |
||
| 26 | } |
||
| 27 | |||
| 28 | protected function setUp(): void |
||
| 35 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.