src/Query/Traits/Clause/OnTrait.php
Avoid using short method names like OnTrait::on(). The configured minimum method name length is 3. Open
Open
public function on(
$firstTableCol,
/*# string */ $operator = ClauseInterface::NO_OPERATOR,
/*# string */ $secondTableCol = ClauseInterface::NO_VALUE
) {
- Read upRead up
- Exclude checks
ShortMethodName
Since: 0.2
Detects when very short method names are used.
Example
class ShortMethod {
public function a( $index ) { // Violation
}
}