squirrelphp/queries-bundle

View on GitHub
src/Twig/SquirrelQueriesExtension.php

Summary

Maintainability
C
7 hrs
Test Coverage
F
0%

Function getPossibleCombinations has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
Open

    private function getPossibleCombinations(array $elements, int $combinationsLevel): array
    {
        $baseCount = \count($elements);
        $result    = [];

Severity: Minor
Found in src/Twig/SquirrelQueriesExtension.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 replaceQueryParameters has 30 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function replaceQueryParameters(string $query, array|Data $parameters): string
    {
        if ($parameters instanceof Data) {
            $parameters = $parameters->getValue(true);

Severity: Minor
Found in src/Twig/SquirrelQueriesExtension.php - About 1 hr to fix

    Method getPossibleCombinations has 27 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        private function getPossibleCombinations(array $elements, int $combinationsLevel): array
        {
            $baseCount = \count($elements);
            $result    = [];
    
    
    Severity: Minor
    Found in src/Twig/SquirrelQueriesExtension.php - About 1 hr to fix

      Method minifyQuery has 27 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function minifyQuery(string $query): string
          {
              $result   = '';
              $keywords = [];
              $required = 1;
      Severity: Minor
      Found in src/Twig/SquirrelQueriesExtension.php - About 1 hr to fix

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

            public static function escapeFunction(mixed $parameter): string
            {
                $result = $parameter;
        
                switch (true) {
        Severity: Minor
        Found in src/Twig/SquirrelQueriesExtension.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 shrinkParameters has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            private function shrinkParameters(array $parameters, array $combination): string
            {
                \array_shift($parameters);
                $result = '';
        
        
        Severity: Minor
        Found in src/Twig/SquirrelQueriesExtension.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 minifyQuery has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

            public function minifyQuery(string $query): string
            {
                $result   = '';
                $keywords = [];
                $required = 1;
        Severity: Minor
        Found in src/Twig/SquirrelQueriesExtension.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