src/typechecker/ObjectTypeChecker.php

Summary

Maintainability
A
0 mins
Test Coverage

The variable $different_properties is not named in camelCase.
Open

    public function check(TypeNode $other)
    {
        if (!($other instanceof ObjectType)) {
            return false;
        }
Severity: Minor
Found in src/typechecker/ObjectTypeChecker.php by phpmd

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

The variable $different_properties is not named in camelCase.
Open

    public function check(TypeNode $other)
    {
        if (!($other instanceof ObjectType)) {
            return false;
        }
Severity: Minor
Found in src/typechecker/ObjectTypeChecker.php by phpmd

CamelCaseVariableName

Since: 0.2

It is considered best practice to use the camelCase notation to name variables.

Example

class ClassName {
    public function doSomething() {
        $data_module = new DataModule();
    }
}

Source

There are no issues that match your filters.

Category
Status