morris/lessql

View on GitHub

Showing 22 of 22 total issues

File Database.php has 461 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

namespace LessQL;

/**
Severity: Minor
Found in src/LessQL/Database.php - About 7 hrs to fix

    Database has 47 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class Database
    {
        /**
         * Constructor. Sets PDO to exception mode.
         *
    Severity: Minor
    Found in src/LessQL/Database.php - About 6 hrs to fix

      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

        Result has 38 functions (exceeds 20 allowed). Consider refactoring.
        Open

        class Result implements \IteratorAggregate, \JsonSerializable
        {
            /**
             * Constructor
             * Use $db->createResult( $parent, $name ) instead
        Severity: Minor
        Found in src/LessQL/Result.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

            File Result.php has 352 lines of code (exceeds 250 allowed). Consider refactoring.
            Open

            <?php
            
            namespace LessQL;
            
            /**
            Severity: Minor
            Found in src/LessQL/Result.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 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";
                Severity: Minor
                Found in src/LessQL/Database.php - About 2 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

                Method execute has 40 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    public function execute()
                    {
                        if (isset($this->rows)) {
                            return $this;
                        }
                Severity: Minor
                Found in src/LessQL/Result.php - About 1 hr to fix

                  Function execute has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
                  Open

                      public function execute()
                      {
                          if (isset($this->rows)) {
                              return $this;
                          }
                  Severity: Minor
                  Found in src/LessQL/Result.php - About 1 hr 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

                  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";
                  Severity: Minor
                  Found in src/LessQL/Database.php - About 1 hr 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 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);
                    
                    
                    Severity: Minor
                    Found in src/LessQL/Result.php - About 45 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

                    Avoid too many return statements within this method.
                    Open

                            return $this->pdo->quote($value);
                    Severity: Major
                    Found in src/LessQL/Database.php - About 30 mins to fix

                      Avoid too many return statements within this method.
                      Open

                                  return "'" . strval($value) . "'";
                      Severity: Major
                      Found in src/LessQL/Database.php - About 30 mins to fix

                        Avoid too many return statements within this method.
                        Open

                                    return $value->value;
                        Severity: Major
                        Found in src/LessQL/Database.php - About 30 mins to fix
                          Severity
                          Category
                          Status
                          Source
                          Language