Function save
has a Cognitive Complexity of 35 (exceeds 5 allowed). Consider refactoring. Open
function save( $recursive = true ) {
$db = $this->getDatabase();
$table = $this->getTable();
- 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
Row
has 38 functions (exceeds 20 allowed). Consider refactoring. Open
class Row implements \ArrayAccess, \IteratorAggregate, \JsonSerializable {
/**
* Constructor
* Use $db->createRow() instead
File Row.php
has 305 lines of code (exceeds 250 allowed). Consider refactoring. Open
<?php
namespace LessQL;
/**
Function jsonSerialize
has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring. Open
function jsonSerialize() {
$array = array();
foreach ( $this->_properties as $key => $value ) {
- 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
Method save
has 51 lines of code (exceeds 25 allowed). Consider refactoring. Open
function save( $recursive = true ) {
$db = $this->getDatabase();
$table = $this->getTable();
Function listRows
has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring. Open
protected function listRows( &$list ) {
$list[] = $this;
foreach ( $this->_properties as $column => $value ) {
- 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 __set
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
function __set( $column, $value ) {
if ( isset( $this->_properties[ $column ] ) && $this->_properties[ $column ] === $value ) {
return;
- 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 updateBackReferences
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
function updateBackReferences() {
$id = $this->getId();
if ( is_array( $id ) ) return $this;
- 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 getId
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
function getId() {
$primary = $this->getDatabase()->getPrimary( $this->getTable() );
if ( is_array( $primary ) ) {
- 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"