aaronbullard/php-schema

View on GitHub
src/Models/SchemaModel.php

Summary

Maintainability
A
0 mins
Test Coverage

The method __construct has a boolean flag argument $observe, which is a certain sign of a Single Responsibility Principle violation.
Open

    public function __construct($input = [], $observe = TRUE)
Severity: Minor
Found in src/Models/SchemaModel.php by phpmd

BooleanArgumentFlag

Since: 1.4.0

A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

Example

class Foo {
    public function bar($flag = true) {
    }
}

Source https://phpmd.org/rules/cleancode.html#booleanargumentflag

Avoid using static access to class '\PhpSchema\Models\Validator' in method '__construct'.
Open

        $this->validator = Validator::create();
Severity: Minor
Found in src/Models/SchemaModel.php by phpmd

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 '\PhpSchema\ValidationException' in method 'validate'.
Invalid

            throw ValidationException::withErrors(
                $this->validator->getErrors()
            );
Severity: Minor
Found in src/Models/SchemaModel.php by phpmd

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

TRUE, FALSE and NULL must be lowercase; expected "true" but found "TRUE"
Open

    public function __construct($input = [], $observe = TRUE)
Severity: Minor
Found in src/Models/SchemaModel.php by phpcodesniffer

There are no issues that match your filters.

Category
Status