Function evaluateIf
has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring. Open
protected function evaluateIf($v1, string $operator, $v2): bool
{
if ($v2 instanceof self) {
$v2 = $v2->getRows();
}
- Read upRead up
- Create a ticketCreate a ticket
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function match
has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring. Open
protected function match(array $row, Model\Scope\AbstractScope $condition): bool
{
if ($condition instanceof Model\Scope\Condition) { // simple condition
$args = $condition->toQueryArguments();
- Read upRead up
- Create a ticketCreate a ticket
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method evaluateIf
has 57 lines of code (exceeds 25 allowed). Consider refactoring. Open
protected function evaluateIf($v1, string $operator, $v2): bool
{
if ($v2 instanceof self) {
$v2 = $v2->getRows();
}
- Create a ticketCreate a ticket
Method match
has 32 lines of code (exceeds 25 allowed). Consider refactoring. Open
protected function match(array $row, Model\Scope\AbstractScope $condition): bool
{
if ($condition instanceof Model\Scope\Condition) { // simple condition
$args = $condition->toQueryArguments();
- Create a ticketCreate a ticket
Function aggregate
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
public function aggregate(string $fx, string $field, bool $coalesce = false)
{
$res = 0;
$column = array_column($this->getRows(), $field);
- Read upRead up
- Create a ticketCreate a ticket
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"