biurad/flange

View on GitHub

Showing 185 of 185 total issues

File CacheExtension.php has 344 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php declare(strict_types=1);

/*
 * This file is part of Biurad opensource projects.
 *
Severity: Minor
Found in src/Extensions/Symfony/CacheExtension.php - About 4 hrs to fix

    Function register has a Cognitive Complexity of 29 (exceeds 5 allowed). Consider refactoring.
    Open

        public function register(Container $container, array $configs = []): void
        {
            if (!$configs['enabled']) {
                return;
            }
    Severity: Minor
    Found in src/Extensions/Symfony/SerializerExtension.php - About 4 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 register has 105 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function register(Container $container, array $configs = []): void
        {
            if (!$configs['enabled']) {
                return;
            }
    Severity: Major
    Found in src/Extensions/Symfony/SerializerExtension.php - About 4 hrs to fix

      File TranslationExtension.php has 340 lines of code (exceeds 250 allowed). Consider refactoring.
      Open

      <?php declare(strict_types=1);
      
      /*
       * This file is part of Biurad opensource projects.
       *
      Severity: Minor
      Found in src/Extensions/Symfony/TranslationExtension.php - About 4 hrs to fix

        Method register has 103 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function register(Container $container, array $configs = []): void
            {
                if (!$configs['enabled']) {
                    return;
                }
        Severity: Major
        Found in src/Extensions/Symfony/NotifierExtension.php - About 4 hrs to fix

          Method register has 99 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public function register(Container $container, array $configs = []): void
              {
                  if (!$configs['enabled']) {
                      return;
                  }
          Severity: Major
          Found in src/Extensions/Symfony/CacheExtension.php - About 3 hrs to fix

            Function register has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring.
            Open

                public function register(Container $container, array $configs = []): void
                {
                    if (!\class_exists(AnnotationLoader::class)) {
                        throw new \LogicException('Annotations/Attributes support cannot be enabled as the Annotation component is not installed. Try running "composer require biurad/annotations".');
                    }
            Severity: Minor
            Found in src/Extensions/AnnotationExtension.php - About 3 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

            Function getLocation has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring.
            Open

                public function getLocation(string $path, string $baseDir = 'src')
                {
                    if (\str_contains($path, '..')) {
                        throw new \RuntimeException(\sprintf('File name "%s" contains invalid characters (..).', $path));
                    }
            Severity: Minor
            Found in src/Traits/HelperTrait.php - About 3 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

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

                protected function describeFKs(Comparator $cmp): void
                {
                    foreach ($cmp->addedForeignKeys() as $fk) {
                        $fkColumns = \implode(', ', $fk->getColumns());
                        $this->output->writeln("    - add foreign key on <fg=yellow>{$fkColumns}</fg=yellow>");
            Severity: Major
            Found in src/Database/Cycle/Generator/ShowChanges.php and 1 other location - About 3 hrs to fix
            src/Database/Cycle/Generator/ShowChanges.php on lines 119..136

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

            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 describeIndexes(Comparator $cmp): void
                {
                    foreach ($cmp->addedIndexes() as $index) {
                        $index = \implode(', ', $index->getColumns());
                        $this->output->writeln("    - add index on <fg=yellow>[{$index}]</fg=yellow>");
            Severity: Major
            Found in src/Database/Cycle/Generator/ShowChanges.php and 1 other location - About 3 hrs to fix
            src/Database/Cycle/Generator/ShowChanges.php on lines 138..155

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

            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

            Function boot has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring.
            Open

                public function boot(Container $container): void
                {
                    $router = $container->definition('http.router');
                    $collection = $container->parameters['routes'] ?? null;
                    $routes = $groups = $defaultMiddlewares = $middlewares = $pipesMiddleware = [];
            Severity: Minor
            Found in src/Extensions/RoutingExtension.php - About 3 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 boot has 88 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                public function boot(Container $container): void
                {
                    $seed = $container->parameters['cache.prefix.seed'] ?? ('_'.$container->parameters['project_dir'].'rade');
                    $attributes = [
                        'provider',
            Severity: Major
            Found in src/Extensions/Symfony/CacheExtension.php - About 3 hrs to fix

              Method getConfigTreeBuilder has 85 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  public function getConfigTreeBuilder(): TreeBuilder
                  {
                      $treeBuilder = new TreeBuilder(__CLASS__);
              
                      $treeBuilder->getRootNode()
              Severity: Major
              Found in src/Extensions/Symfony/CacheExtension.php - About 3 hrs to fix

                Method getConfigTreeBuilder has 85 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    public function getConfigTreeBuilder(): TreeBuilder
                    {
                        $treeBuilder = new TreeBuilder(__CLASS__);
                
                        $connectionNode = $treeBuilder->getRootNode()
                Severity: Major
                Found in src/Extensions/Doctrine/DatabaseExtension.php - About 3 hrs to fix

                  Method getConfigTreeBuilder has 81 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                      public function getConfigTreeBuilder(): TreeBuilder
                      {
                          $treeBuilder = new TreeBuilder(__CLASS__);
                  
                          $treeBuilder->getRootNode()
                  Severity: Major
                  Found in src/Extensions/Symfony/ValidatorExtension.php - About 3 hrs to fix

                    File HttpGalaxyExtension.php has 300 lines of code (exceeds 250 allowed). Consider refactoring.
                    Open

                    <?php declare(strict_types=1);
                    
                    /*
                     * This file is part of Biurad opensource projects.
                     *
                    Severity: Minor
                    Found in src/Extensions/HttpGalaxyExtension.php - About 3 hrs to fix

                      Method getConfigTreeBuilder has 78 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                          public function getConfigTreeBuilder(): TreeBuilder
                          {
                              $treeBuilder = new TreeBuilder(__CLASS__);
                      
                              $treeBuilder->getRootNode()
                      Severity: Major
                      Found in src/Extensions/Symfony/AssetExtension.php - About 3 hrs to fix

                        Function register has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
                        Open

                            public function register(Container $container, array $configs = []): void
                            {
                                $definitions = [
                                    'http.middleware.headers' => service(HttpHeadersMiddleware::class, [\array_diff_key($configs['headers'], ['cors' => []])])->public(false),
                                ];
                        Severity: Minor
                        Found in src/Extensions/HttpGalaxyExtension.php - About 3 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 register has 73 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                            public function register(Container $container, array $configs = []): void
                            {
                                $definitions = [
                                    'http.middleware.headers' => service(HttpHeadersMiddleware::class, [\array_diff_key($configs['headers'], ['cors' => []])])->public(false),
                                ];
                        Severity: Major
                        Found in src/Extensions/HttpGalaxyExtension.php - About 2 hrs to fix

                          Method doEventsRegister has 73 lines of code (exceeds 25 allowed). Consider refactoring.
                          Open

                              private function doEventsRegister(Container $container, Definition $eventDispatcher, string $listenerTag, array $eventSubscribers)
                              {
                                  [$subscriberTag, $eventSubscribers] = $eventSubscribers;
                          
                                  foreach ($container->tagged($listenerTag) as $id => $event) {
                          Severity: Major
                          Found in src/Extensions/EventDispatcherExtension.php - About 2 hrs to fix
                            Severity
                            Category
                            Status
                            Source
                            Language