phossa2/query

View on GitHub

Showing 6 of 13 total issues

Method realWhere has 7 arguments (exceeds 4 allowed). Consider refactoring.
Open

        $col,
        $operator = WhereInterface::NO_OPERATOR,
        $value = WhereInterface::NO_VALUE,
        /*# string */ $logicAnd = 'AND',
        /*# string */ $whereNot = '',
Severity: Major
Found in src/Query/Traits/Clause/WhereTrait.php - About 50 mins to fix

    Method realWhere has 7 arguments (exceeds 4 allowed). Consider refactoring.
    Open

            $col,
            $operator = WhereInterface::NO_OPERATOR,
            $value = WhereInterface::NO_VALUE,
            /*# bool */ $logicAnd = true,
            /*# bool */ $whereNot = false,
    Severity: Major
    Found in src/Query/Traits/Clause/HavingTrait.php - About 50 mins to fix

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

          protected function buildUpdateSet(
              /*# string */ $prefix,
              array $settings
          )/*# : string */ {
              $result = [];
      Severity: Minor
      Found in src/Query/Traits/Clause/SetTrait.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 realCol has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

          protected function realCol(
              $col,
              /*# string */ $alias = '',
              $rawMode = false
          ) {
      Severity: Minor
      Found in src/Query/Traits/Clause/ColTrait.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

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

          protected function setEscapeCallable($escapeFunction)/*# : callable */
          {
              if (!is_callable($escapeFunction)) {
                  $this->escape = function ($v) {
                      if (is_numeric($v) && !is_string($v)) {
      Severity: Minor
      Found in src/Query/Misc/Parameter.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

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

          protected function setWithArrayData(array $data)
          {
              if (isset($data[0])) { // multiple rows
                  foreach ($data as $row) {
                      $this->set($row);
      Severity: Minor
      Found in src/Query/Traits/Clause/SetTrait.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

      Severity
      Category
      Status
      Source
      Language