Showing 22 of 22 total issues
File Database.php
has 461 lines of code (exceeds 250 allowed). Consider refactoring. Open
<?php
namespace LessQL;
/**
Database
has 47 functions (exceeds 20 allowed). Consider refactoring. Open
class Database
{
/**
* Constructor. Sets PDO to exception mode.
*
Function save
has a Cognitive Complexity of 35 (exceeds 5 allowed). Consider refactoring. Open
public 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
Result
has 38 functions (exceeds 20 allowed). Consider refactoring. Open
class Result implements \IteratorAggregate, \JsonSerializable
{
/**
* Constructor
* Use $db->createResult( $parent, $name ) instead
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 362 lines of code (exceeds 250 allowed). Consider refactoring. Open
<?php
namespace LessQL;
/**
File Result.php
has 352 lines of code (exceeds 250 allowed). Consider refactoring. Open
<?php
namespace LessQL;
/**
Method save
has 57 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function save($recursive = true)
{
$db = $this->getDatabase();
$table = $this->getTable();
Function is
has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring. Open
public function is($column, $value, $not = false)
{
$bang = $not ? "!" : "";
$or = $not ? " AND " : " OR ";
$novalue = $not ? "1=1" : "0=1";
- 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 execute
has 40 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function execute()
{
if (isset($this->rows)) {
return $this;
}
Function execute
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
public function execute()
{
if (isset($this->rows)) {
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
Method is
has 35 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function is($column, $value, $not = false)
{
$bang = $not ? "!" : "";
$or = $not ? " AND " : " OR ";
$novalue = $not ? "1=1" : "0=1";
Function __set
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
public 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 jsonSerialize
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
public 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
Function primaryResult
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
public function primaryResult()
{
$result = $this->db->table($this->table);
$primary = $this->db->getPrimary($this->table);
- 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 listRows
has a Cognitive Complexity of 7 (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 updateBackReferences
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
public function updateBackReferences()
{
$id = $this->getId();
if (is_array($id)) {
- 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
Avoid too many return
statements within this method. Open
return $this->pdo->quote($value);
Avoid too many return
statements within this method. Open
return "'" . strval($value) . "'";
Avoid too many return
statements within this method. Open
return $value->value;