Formula9/Framework

View on GitHub
Nine/Database/Query/Builder.php

Summary

Maintainability
A
0 mins
Test Coverage

The property $query_factory is not named in camelCase.
Open

class Builder
{
    /** @var QueryFactory */
    protected $query_factory;

Severity: Minor
Found in Nine/Database/Query/Builder.php by phpmd

CamelCasePropertyName

Since: 0.2

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

Example

class ClassName {
    protected $property_name;
}

Source

The parameter $driver_name is not named in camelCase.
Open

    public function __construct(string $driver_name)
    {
        $this->query_factory = new QueryFactory($driver_name);
    }
Severity: Minor
Found in Nine/Database/Query/Builder.php by phpmd

CamelCaseParameterName

Since: 0.2

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

Example

class ClassName {
    public function doSomething($user_name) {
    }
}

Source

The variable $driver_name is not named in camelCase.
Open

    public function __construct(string $driver_name)
    {
        $this->query_factory = new QueryFactory($driver_name);
    }
Severity: Minor
Found in Nine/Database/Query/Builder.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