Showing 6 of 13 total issues
Method realWhere
has 7 arguments (exceeds 4 allowed). Consider refactoring. Open
$col,
$operator = WhereInterface::NO_OPERATOR,
$value = WhereInterface::NO_VALUE,
/*# bool */ $logicAnd = true,
/*# bool */ $whereNot = false,
Method realWhere
has 7 arguments (exceeds 4 allowed). Consider refactoring. Open
$col,
$operator = WhereInterface::NO_OPERATOR,
$value = WhereInterface::NO_VALUE,
/*# string */ $logicAnd = 'AND',
/*# string */ $whereNot = '',
Function buildUpdateSet
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
protected function buildUpdateSet(
/*# string */ $prefix,
array $settings
)/*# : string */ {
$result = [];
- Read upRead up
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 setWithArrayData
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
protected function setWithArrayData(array $data)
{
if (isset($data[0])) { // multiple rows
foreach ($data as $row) {
$this->set($row);
- Read upRead up
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 realCol
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
protected function realCol(
$col,
/*# string */ $alias = '',
$rawMode = false
) {
- Read upRead up
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 setEscapeCallable
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
protected function setEscapeCallable($escapeFunction)/*# : callable */
{
if (!is_callable($escapeFunction)) {
$this->escape = function ($v) {
if (is_numeric($v) && !is_string($v)) {
- Read upRead up
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"