Showing 8 of 37 total issues
Method configDataProvider
has 66 lines of code (exceeds 25 allowed). Consider refactoring. Open
public static function configDataProvider(): array
{
return [
[
[
Method docs
has 44 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function docs(Request $request)
{
$fileSystem = new Filesystem();
$documentation = $request->offsetGet('documentation');
$config = $request->offsetGet('config');
Method canGenerateWithScanOptions
has 32 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function canGenerateWithScanOptions(): void
{
$cfg = config('l5-swagger.documentations.default');
$cfg['scanOptions']['exclude'] = [
Method api
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function api(Request $request)
{
$documentation = $request->offsetGet('documentation');
$config = $request->offsetGet('config');
Function docs
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
public function docs(Request $request)
{
$fileSystem = new Filesystem();
$documentation = $request->offsetGet('documentation');
$config = $request->offsetGet('config');
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method __construct
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
array $paths,
array $constants,
bool $yamlCopyRequired,
SecurityDefinitions $security,
array $scanOptions,
Function setProcessors
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
protected function setProcessors(OpenApiGenerator $generator): void
{
$processorClasses = Arr::get($this->scanOptions, self::SCAN_OPTION_PROCESSORS, []);
$processors = [];
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function copyAssets
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
protected function copyAssets(): void
{
$fileSystem = new Filesystem();
$src = __DIR__.'/../vendor/swagger-api/swagger-ui/dist/';
$destination = __DIR__.'/../vendor/orchestra/testbench-core/laravel/vendor/swagger-api/swagger-ui/dist/';
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"