wol-soft/php-json-schema-model-generator

View on GitHub
src/Model/Validator/AdditionalPropertiesValidator.php

Summary

Maintainability
A
1 hr
Test Coverage
A
100%

Method __construct has 29 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function __construct(
        SchemaProcessor $schemaProcessor,
        Schema $schema,
        JsonSchema $propertiesStructure,
        ?string $propertyName = null,
Severity: Minor
Found in src/Model/Validator/AdditionalPropertiesValidator.php - About 1 hr to fix

    Avoid using static access to class '\PHPModelGenerator\Utils\RenderHelper' in method '__construct'.
    Open

                    'patternProperties' => $patternProperties ? RenderHelper::varExportArray($patternProperties) : null,

    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

    Avoid using static access to class '\PHPModelGenerator\Utils\RenderHelper' in method '__construct'.
    Open

                    'additionalProperties' => RenderHelper::varExportArray(
                        array_keys($propertiesStructure->getJson()[static::PROPERTIES_KEY] ?? []),
                    ),

    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

    syntax error, unexpected ')', expecting variable (T_VARIABLE)
    Open

        ) {

    There are no issues that match your filters.

    Category
    Status