biurad/flange

View on GitHub

Showing 181 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

            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

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

                                public static function getConfigNode(string $name, bool $asGroup = false): ArrayNodeDefinition
                                {
                                    $rootNode = new ArrayNodeDefinition($name);
                            
                                    if ($asGroup) {
                            Severity: Major
                            Found in src/Extensions/Config/RouteSection.php - About 2 hrs to fix

                              Function registerValidatorMapping has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
                              Open

                                  private function registerValidatorMapping(Container $container, array &$files): void
                                  {
                                      $fileRecorder = function ($extension, $path) use (&$files): void {
                                          $files['yaml' === $extension ? 'yml' : $extension][] = $path;
                                      };
                              Severity: Minor
                              Found in src/Extensions/Symfony/ValidatorExtension.php - About 2 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

                              Severity
                              Category
                              Status
                              Source
                              Language