morris/lessql

View on GitHub
src/LessQL/Row.php

Summary

Maintainability
D
2 days
Test Coverage

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();

Severity: Minor
Found in src/LessQL/Row.php - About 5 hrs to fix

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
Severity: Minor
Found in src/LessQL/Row.php - About 5 hrs to fix

    File Row.php has 362 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    
    namespace LessQL;
    
    /**
    Severity: Minor
    Found in src/LessQL/Row.php - About 4 hrs to fix

      Method save has 57 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function save($recursive = true)
          {
              $db = $this->getDatabase();
              $table = $this->getTable();
      
      
      Severity: Major
      Found in src/LessQL/Row.php - About 2 hrs to fix

        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) {
        Severity: Minor
        Found in src/LessQL/Row.php - About 55 mins to fix

        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

            public function __set($column, $value)
            {
                if (isset($this->_properties[$column]) && $this->_properties[$column] === $value) {
                    return;
                }
        Severity: Minor
        Found in src/LessQL/Row.php - About 55 mins to fix

        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) {
        Severity: Minor
        Found in src/LessQL/Row.php - About 35 mins to fix

        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)) {
        Severity: Minor
        Found in src/LessQL/Row.php - About 35 mins to fix

        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

            public function getId()
            {
                $primary = $this->getDatabase()->getPrimary($this->getTable());
        
                if (is_array($primary)) {
        Severity: Minor
        Found in src/LessQL/Row.php - About 25 mins to fix

        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

        There are no issues that match your filters.

        Category
        Status