brokencube/automatorm

View on GitHub
src/Database/QueryBuilder/Join.php

Summary

Maintainability
A
0 mins
Test Coverage

Possibly zero references to use statement for classlike/namespace SqlString (\Automatorm\Database\SqlString)
Open

use Automatorm\Database\SqlString;
Severity: Minor
Found in src/Database/QueryBuilder/Join.php by phan

Avoid using short method names like Join::on(). The configured minimum method name length is 3.
Open

    public function on(array $clauses) : self
    {
        $this->where->addOnClauses($clauses);
        return $this;
    }
Severity: Minor
Found in src/Database/QueryBuilder/Join.php by phpmd

ShortMethodName

Since: 0.2

Detects when very short method names are used.

Example

class ShortMethod {
    public function a( $index ) { // Violation
    }
}

Source https://phpmd.org/rules/naming.html#shortmethodname

There are no issues that match your filters.

Category
Status