chrisandchris/passive-record-orm

View on GitHub
src/ChrisAndChris/Common/RowMapperBundle/Services/Query/Parser/Snippets/PgSqlBag.php

Summary

Maintainability
F
5 days
Test Coverage

Method init has 330 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    private function init()
    {
        $this->snippets = [
            'select'     => function () {
                return [

    File PgSqlBag.php has 385 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    
    namespace ChrisAndChris\Common\RowMapperBundle\Services\Query\Parser\Snippets;
    
    use ChrisAndChris\Common\RowMapperBundle\Events\RowMapperEvents;

      Function init has a Cognitive Complexity of 34 (exceeds 5 allowed). Consider refactoring.
      Open

          private function init()
          {
              $this->snippets = [
                  'select'     => function () {
                      return [

      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

      Avoid too many return statements within this method.
      Open

                      return [
                          'code'   => strtoupper($params['name']) . '(/@brace(f))',
                          'params' => null,
                      ];

        Avoid too many return statements within this method.
        Open

                        return [
                            'code'   => 'OR',
                            'params' => null,
                        ];

          Avoid too many return statements within this method.
          Open

                          return [
                              'code'   => strtoupper($params['type'])
                                  . ' JOIN '
                                  . $this->implodeIdentifier($params['table'],
                                      self::DELIMITER)

            Avoid too many return statements within this method.
            Open

                            return [
                                'code'   => 'NULL',
                                'params' => null,
                            ];

              Avoid too many return statements within this method.
              Open

                              return [
                                  'code'   => 'ORDER BY /@brace(order)',
                                  'params' => null,
                              ];

                Avoid too many return statements within this method.
                Open

                                return [
                                    'code'   => $params['cast'],
                                    'params' => null,
                                ];

                  Avoid too many return statements within this method.
                  Open

                                      return [
                                          'code'   => $params['comparison'],
                                          'params' => null,
                                      ];

                    Avoid too many return statements within this method.
                    Open

                                        return [
                                            'code'   => 'IN (' . $code . ')',
                                            'params' => $params['in'],
                                        ];

                      Avoid too many return statements within this method.
                      Open

                                      return [
                                          'code'   => '?',
                                          'params' => $params['value'],
                                      ];

                        Avoid too many return statements within this method.
                        Open

                                        return [
                                            'code'   => 'VALUES',
                                            'params' => null,
                                        ];

                          Avoid too many return statements within this method.
                          Open

                                          return [
                                              'code'   => 'LIMIT ' . abs((int)$params['limit']),
                                              'params' => null,
                                          ];

                            Avoid too many return statements within this method.
                            Open

                                            return [
                                                'code'   => 'OFFSET ' . abs((int)$params['offset']),
                                                'params' => null,
                                            ];

                              Avoid too many return statements within this method.
                              Open

                                              return [
                                                  'code'   => 'UPDATE ' . $params['table'] . ' SET',
                                                  'params' => null,
                                              ];

                                Avoid too many return statements within this method.
                                Open

                                                return [
                                                    'code'   => '( /@brace(brace) )',
                                                    'params' => null,
                                                ];

                                  Avoid too many return statements within this method.
                                  Open

                                                          return 'UNION DISTINCT';

                                    Avoid too many return statements within this method.
                                    Open

                                                    return [
                                                        'code'   => 'IN ( /@brace(in) )',
                                                        'params' => null,
                                                    ];

                                      Avoid too many return statements within this method.
                                      Open

                                                      return [
                                                          'code'   => '=',
                                                          'params' => null,
                                                      ];

                                        Avoid too many return statements within this method.
                                        Open

                                                        return [
                                                            'code'   => $sql,
                                                            'params' => null,
                                                        ];

                                          Avoid too many return statements within this method.
                                          Open

                                                          return [
                                                              'code'   => 'INSERT ' . $mode . ' INTO "' . $params['table'] . '"',
                                                              'params' => null,
                                                          ];

                                            Avoid too many return statements within this method.
                                            Open

                                                            return [
                                                                'code'   => ',',
                                                                'params' => null,
                                                            ];

                                              Avoid too many return statements within this method.
                                              Open

                                                              return [
                                                                  'code'   => 'GROUP BY /@brace(group)',
                                                                  'params' => null,
                                                              ];

                                                Avoid too many return statements within this method.
                                                Open

                                                                return [
                                                                    'code'   => 'FROM ' . $table . ' ' . $alias,
                                                                    'params' => null,
                                                                ];

                                                  Avoid too many return statements within this method.
                                                  Open

                                                                  return [
                                                                      'code'   => 'USING(' . $using . ')',
                                                                      'params' => null,
                                                                  ];

                                                    Avoid too many return statements within this method.
                                                    Open

                                                                    return [
                                                                        'code'   => 'DELETE FROM ' .
                                                                            $this->implodeIdentifier($params['table'],
                                                                                self::DELIMITER),
                                                                        'params' => null,

                                                      Avoid too many return statements within this method.
                                                      Open

                                                                      return [
                                                                          'code'   => $params['raw'],
                                                                          'params' => $params['params'],
                                                                      ];

                                                        Avoid too many return statements within this method.
                                                        Open

                                                                        return [
                                                                            'code'   => 'ILIKE ?',
                                                                            'params' => $params['pattern'],
                                                                        ];

                                                          Avoid too many return statements within this method.
                                                          Open

                                                                          return [
                                                                              'code'   => $this->implodeIdentifier($params['field'],
                                                                                      self::DELIMITER)
                                                                                  . ' ' . strtoupper($params['direction']),
                                                                              'params' => null,

                                                            Avoid too many return statements within this method.
                                                            Open

                                                                            return 'UNION';

                                                              Avoid too many return statements within this method.
                                                              Open

                                                                              return [
                                                                                  'code'   => '/@close',
                                                                                  'params' => null,
                                                                              ];

                                                                Avoid too many return statements within this method.
                                                                Open

                                                                                return [
                                                                                    'code'   => $this->implodeIdentifier($params['identifier'],
                                                                                        self::DELIMITER),
                                                                                    'params' => null,
                                                                                ];

                                                                  Avoid too many return statements within this method.
                                                                  Open

                                                                                  return [
                                                                                      'code'   => 'ON ( /@brace(on) )',
                                                                                      'params' => null,
                                                                                  ];

                                                                    Avoid too many return statements within this method.
                                                                    Open

                                                                                        return 'UNION ALL';

                                                                      Avoid too many return statements within this method.
                                                                      Open

                                                                                      return [
                                                                                          'code'   => 'WHERE /@brace(where)',
                                                                                          'params' => null,
                                                                                      ];

                                                                        Avoid too many return statements within this method.
                                                                        Open

                                                                                            return [
                                                                                                'code'   => 'IS NULL',
                                                                                                'params' => null,
                                                                                            ];

                                                                          Avoid too many return statements within this method.
                                                                          Open

                                                                                          return [
                                                                                              'code'   => 'IS NOT NULL',
                                                                                              'params' => null,
                                                                                          ];

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

                                                                                        'in'         => function (array $params) {
                                                                                            if (is_array($params['in'])) {
                                                                                                $code = '';
                                                                                                $count = count($params['in']);
                                                                                                for ($i = 0; $i < $count; $i++) {
                                                                            src/ChrisAndChris/Common/RowMapperBundle/Services/Query/Parser/Snippets/MySqlBag.php on lines 200..221

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

                                                                            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

                                                                                        'insert'     => function (array $params) {
                                                                                            $modes = [
                                                                                                'ignore',
                                                                                            ];
                                                                                            $mode = null;
                                                                            src/ChrisAndChris/Common/RowMapperBundle/Services/Query/Parser/Snippets/MySqlBag.php on lines 222..236

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

                                                                            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

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

                                                                                        'orderby'    => function (array $params) {
                                                                                            if ($params['direction'] != 'asc' &&
                                                                                                $params['direction'] != 'desc'
                                                                                            ) {
                                                                                                throw new MalformedQueryException('Unknown order type');
                                                                            src/ChrisAndChris/Common/RowMapperBundle/Services/Query/Parser/Snippets/MySqlBag.php on lines 304..317

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

                                                                            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

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

                                                                                        'comparison' => function (array $params) {
                                                                                            $allowed = [
                                                                                                '<',
                                                                                                '>',
                                                                                                '<>',
                                                                            src/ChrisAndChris/Common/RowMapperBundle/Services/Query/Parser/Snippets/MySqlBag.php on lines 76..95

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

                                                                            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

                                                                            There are no issues that match your filters.

                                                                            Category
                                                                            Status