kronusme/dota2-api

View on GitHub
includes/Utils/Db.php

Summary

Maintainability
D
1 day
Test Coverage

File Db.php has 295 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

namespace Dota2Api\Utils;

use PDO;
Severity: Minor
Found in includes/Utils/Db.php - About 3 hrs to fix

    Function deletePDO has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
    Open

        public function deletePDO($table, array $where = array(), $limit = 1)
        {
            $limit = (int)$limit;
            if (count($where) === 0) {
                return false;
    Severity: Minor
    Found in includes/Utils/Db.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 insertManyPDO has 39 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function insertManyPDO($table, array $fields, array $data = array(), $update = false)
        {
            if (count($data) === 0) {
                return false;
            }
    Severity: Minor
    Found in includes/Utils/Db.php - About 1 hr to fix

      Method updatePDO has 36 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function updatePDO($table, array $data, array $where = array())
          {
      
              if (count($data) === 0) {
                  return false;
      Severity: Minor
      Found in includes/Utils/Db.php - About 1 hr to fix

        Method deletePDO has 36 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function deletePDO($table, array $where = array(), $limit = 1)
            {
                $limit = (int)$limit;
                if (count($where) === 0) {
                    return false;
        Severity: Minor
        Found in includes/Utils/Db.php - About 1 hr to fix

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

              public function updatePDO($table, array $data, array $where = array())
              {
          
                  if (count($data) === 0) {
                      return false;
          Severity: Minor
          Found in includes/Utils/Db.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

          Function insertManyPDO has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
          Open

              public function insertManyPDO($table, array $fields, array $data = array(), $update = false)
              {
                  if (count($data) === 0) {
                      return false;
                  }
          Severity: Minor
          Found in includes/Utils/Db.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 insertPDO has 30 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public function insertPDO($table, array $data = array())
              {
                  if (count($data) === 0) {
                      return false;
                  }
          Severity: Minor
          Found in includes/Utils/Db.php - About 1 hr to fix

            Method obtain has 5 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                public static function obtain($server = null, $user = null, $pass = null, $database = null, $pref = null)
            Severity: Minor
            Found in includes/Utils/Db.php - About 35 mins to fix

              Method __construct has 5 arguments (exceeds 4 allowed). Consider refactoring.
              Open

                  private function __construct($server = null, $user = null, $pass = null, $database = null, $pref = null)
              Severity: Minor
              Found in includes/Utils/Db.php - About 35 mins to fix

                Function insertPDO has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                Open

                    public function insertPDO($table, array $data = array())
                    {
                        if (count($data) === 0) {
                            return false;
                        }
                Severity: Minor
                Found in includes/Utils/Db.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

                There are no issues that match your filters.

                Category
                Status