tests/GeneratorTest.php
Method canGenerateWithScanOptions
has 32 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function canGenerateWithScanOptions(): void
{
$cfg = config('l5-swagger.documentations.default');
$cfg['scanOptions']['exclude'] = [
Avoid using static access to class '\Illuminate\Http\Request' in method 'canSetProxy'. Open
Open
}
- Read upRead up
- Exclude checks
StaticAccess
Since: 1.4.0
Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.
Example
class Foo
{
public function bar()
{
Bar::baz();
}
}
Source https://phpmd.org/rules/cleancode.html#staticaccess
Line exceeds 120 characters; contains 149 characters Open
Open
->assertSee("POST::/products::Tests\\\storage\\\annotations\\\OpenApi\\\Products\\\L5SwaggerAnnotationsExampleProducts::getProductsList")
- Exclude checks