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

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

Summary

Maintainability
A
0 mins
Test Coverage
A
100%

The class PropertyNamesValidator has a coupling between objects value of 13. Consider to reduce the number of dependencies under 13.
Open

class PropertyNamesValidator extends PropertyTemplateValidator
{
    /**
     * PropertyNamesValidator constructor.
     *

CouplingBetweenObjects

Since: 1.1.0

A class with too many dependencies has negative impacts on several quality aspects of a class. This includes quality criteria like stability, maintainability and understandability

Example

class Foo {
    /**
     * @var \foo\bar\X
     */
    private $x = null;

    /**
     * @var \foo\bar\Y
     */
    private $y = null;

    /**
     * @var \foo\bar\Z
     */
    private $z = null;

    public function setFoo(\Foo $foo) {}
    public function setBar(\Bar $bar) {}
    public function setBaz(\Baz $baz) {}

    /**
     * @return \SplObjectStorage
     * @throws \OutOfRangeException
     * @throws \InvalidArgumentException
     * @throws \ErrorException
     */
    public function process(\Iterator $it) {}

    // ...
}

Source https://phpmd.org/rules/design.html#couplingbetweenobjects

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

    ) {

Expected 0 spaces before closing bracket; newline found
Open

            ->filterValidators(static fn(Validator $validator): bool =>

There are no issues that match your filters.

Category
Status