Finesse/QueryScribe

View on GitHub

Showing 36 of 44 total issues

File CommonGrammar.php has 303 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

namespace Finesse\QueryScribe\Grammars;

use Finesse\QueryScribe\Exceptions\InvalidQueryException;
Severity: Minor
Found in src/Grammars/CommonGrammar.php - About 3 hrs to fix

    CommonGrammar has 25 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class CommonGrammar implements GrammarInterface
    {
        use CommonGrammarCriteriaTrait;
        use CommonGrammarOrderTrait;
    
    
    Severity: Minor
    Found in src/Grammars/CommonGrammar.php - About 2 hrs to fix

      Method whereArgumentsToCriterion has 47 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          protected function whereArgumentsToCriterion(
              array $arguments,
              string $appendRule = 'AND',
              bool $valueIsColumn = false
          ): Criterion {
      Severity: Minor
      Found in src/QueryBricks/WhereTrait.php - About 1 hr to fix

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

            protected function compileInsertFromValues($table, string $tableAlias = null, array $values): array
            {
                if (empty($values)) {
                    return [];
                }
        Severity: Minor
        Found in src/Grammars/CommonGrammar.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 processQuery has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
        Open

            protected function processQuery(Query $query, $context): Query
            {
                $queryProperties = [];
        
                // Table
        Severity: Minor
        Found in src/PostProcessors/AbstractProcessor.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 processQuery has 39 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            protected function processQuery(Query $query, $context): Query
            {
                $queryProperties = [];
        
                // Table
        Severity: Minor
        Found in src/PostProcessors/AbstractProcessor.php - About 1 hr to fix

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

              protected function compileCriteria(array $criteria, array &$bindings): string
              {
                  $criteriaSQL = '';
                  $previousAppendRule = null;
          
          
          Severity: Minor
          Found in src/Grammars/CommonGrammarCriteriaTrait.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 whereArgumentsToCriterion has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
          Open

              protected function whereArgumentsToCriterion(
                  array $arguments,
                  string $appendRule = 'AND',
                  bool $valueIsColumn = false
              ): Criterion {
          Severity: Minor
          Found in src/QueryBricks/WhereTrait.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 compileInsert has 31 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public function compileInsert(Query $query): array
              {
                  if ($query->table === null) {
                      throw new InvalidQueryException('The INTO table is not set');
                  }
          Severity: Minor
          Found in src/Grammars/CommonGrammar.php - About 1 hr to fix

            Similar blocks of code found in 2 locations. Consider refactoring.
            Open

                    if (
                        $value !== null &&
                        !is_numeric($value) &&
                        !($value instanceof \Closure) &&
                        !($value instanceof self) &&
            Severity: Major
            Found in src/Query.php and 1 other location - About 1 hr to fix
            src/Query.php on lines 325..337

            Duplicated Code

            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

            Tuning

            This issue has a mass of 105.

            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

            Refactorings

            Further Reading

            Similar blocks of code found in 2 locations. Consider refactoring.
            Open

                    if (
                        $value !== null &&
                        !is_scalar($value) &&
                        !($value instanceof \Closure) &&
                        !($value instanceof self) &&
            Severity: Major
            Found in src/Query.php and 1 other location - About 1 hr to fix
            src/Query.php on lines 290..302

            Duplicated Code

            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

            Tuning

            This issue has a mass of 105.

            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

            Refactorings

            Further Reading

            Similar blocks of code found in 2 locations. Consider refactoring.
            Open

            <?php
            
            namespace Finesse\QueryScribe\Exceptions;
            
            /**
            Severity: Major
            Found in src/Exceptions/InvalidReturnValueException.php and 1 other location - About 1 hr to fix
            src/Exceptions/InvalidArgumentException.php on lines 1..29

            Duplicated Code

            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

            Tuning

            This issue has a mass of 104.

            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

            Refactorings

            Further Reading

            Similar blocks of code found in 2 locations. Consider refactoring.
            Open

                protected function processColumnCriterion(ColumnsCriterion $criterion, $context): ColumnsCriterion
                {
                    $column1 = $this->processColumnOrSubQuery($criterion->column1, $context);
                    $column2 = $this->processColumnOrSubQuery($criterion->column2, $context);
            
            
            Severity: Major
            Found in src/PostProcessors/AbstractProcessorCriteriaTrait.php and 1 other location - About 1 hr to fix
            src/PostProcessors/AbstractProcessorCriteriaTrait.php on lines 57..67

            Duplicated Code

            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

            Tuning

            This issue has a mass of 104.

            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

            Refactorings

            Further Reading

            Similar blocks of code found in 2 locations. Consider refactoring.
            Open

            <?php
            
            namespace Finesse\QueryScribe\Exceptions;
            
            /**
            Severity: Major
            Found in src/Exceptions/InvalidArgumentException.php and 1 other location - About 1 hr to fix
            src/Exceptions/InvalidReturnValueException.php on lines 1..29

            Duplicated Code

            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

            Tuning

            This issue has a mass of 104.

            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

            Refactorings

            Further Reading

            Similar blocks of code found in 2 locations. Consider refactoring.
            Open

                protected function processValueCriterion(ValueCriterion $criterion, $context): ValueCriterion
                {
                    $column = $this->processColumnOrSubQuery($criterion->column, $context);
                    $value = $this->processValueOrSubQuery($criterion->value, $context);
            
            
            Severity: Major
            Found in src/PostProcessors/AbstractProcessorCriteriaTrait.php and 1 other location - About 1 hr to fix
            src/PostProcessors/AbstractProcessorCriteriaTrait.php on lines 72..82

            Duplicated Code

            Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

            Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

            When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

            Tuning

            This issue has a mass of 104.

            We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

            The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

            If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

            See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

            Refactorings

            Further Reading

            Method compileInsertFromValues has 28 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                protected function compileInsertFromValues($table, string $tableAlias = null, array $values): array
                {
                    if (empty($values)) {
                        return [];
                    }
            Severity: Minor
            Found in src/Grammars/CommonGrammar.php - About 1 hr to fix

              Function addInsert has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
              Open

                  public function addInsert(array $rows): self
                  {
                      if (!empty($rows) && !is_array(reset($rows))) {
                          $rows = [$rows];
                      }
              Severity: Minor
              Found in src/QueryBricks/InsertTrait.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 addInsert has 26 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  public function addInsert(array $rows): self
                  {
                      if (!empty($rows) && !is_array(reset($rows))) {
                          $rows = [$rows];
                      }
              Severity: Minor
              Found in src/QueryBricks/InsertTrait.php - About 1 hr to fix

                Function addInsertFromSelect has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
                Open

                    public function addInsertFromSelect($columns, $selectQuery = null): self
                    {
                        if ($selectQuery === null) {
                            $selectQuery = $columns;
                            $columns = null;
                Severity: Minor
                Found in src/QueryBricks/InsertTrait.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 compileCriterion has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                Open

                    protected function compileCriterion(Criterion $criterion, array &$bindings): string
                    {
                        if ($criterion instanceof ValueCriterion) {
                            return $this->compileValueCriterion($criterion, $bindings);
                        }
                Severity: Minor
                Found in src/Grammars/CommonGrammarCriteriaTrait.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

                Severity
                Category
                Status
                Source
                Language