morris/lessql

View on GitHub
src/LessQL/Database.php

Summary

Maintainability
D
2 days
Test Coverage

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 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 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

        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

              Function quote has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

                  public function quote($value)
                  {
                      $value = $this->format($value);
              
                      if ($value === null) {
              Severity: Minor
              Found in src/LessQL/Database.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