Query\QueryBuilderInterface::selectAvg
Selects the average value of a field from a query
Signature
public function selectAvg(string
$field,
[boolean
$as = FALSE] )
Parameters
$field
—
string
$as
—
boolean
Returns
- QueryBuilderInterface
Violations
PHPMessDetector
Line |
Rule |
Message |
99 |
BooleanArgumentFlag
|
The method selectAvg has a boolean flag argument $as, which is a certain sign of a Single Responsibility Principle violation. |
99 |
ShortVariable
|
Avoid variables with short names like $as. Configured minimum length is 3. |