klitsche/dog

View on GitHub

Showing 80 of 103 total issues

File Rules.php has 379 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

declare(strict_types=1);

namespace Klitsche\Dog\Analyzer;
Severity: Minor
Found in src/Analyzer/Rules.php - About 5 hrs to fix

    File Printer.php has 339 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    
    declare(strict_types=1);
    
    namespace Klitsche\Dog\Printer\Markdown;
    Severity: Minor
    Found in src/Printer/Markdown/Printer.php - About 4 hrs to fix

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

          public function analyze(ElementInterface $element): iterable
          {
              if (
                  $element instanceof DocBlockAwareInterface
                  && $element->hasDocBlock() === true
      Severity: Minor
      Found in src/Analyzer/Rules/DocBlockDeprecatedCorrespondingSeeRule.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 enrich has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
      Open

          public function enrich(ProjectInterface $project): void
          {
              $enrichers = $this->enrichers->getEnrichers();
              $elements = $project->getElements();
      
      
      Severity: Minor
      Found in src/ProjectEnricher.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

      Function enrich has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
      Open

          public function enrich(DataAwareInterface $dataHolder): void
          {
              if ($dataHolder instanceof Trait_) {
                  $usedBy = [];
                  $project = $dataHolder->getProject();
      Severity: Minor
      Found in src/Enrichers/UsedBy/UsedByEnricher.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

      Class_ has 22 functions (exceeds 20 allowed). Consider refactoring.
      Open

      class Class_ implements ElementInterface, FqsenAwareInterface, DocBlockAwareInterface, ProjectAwareInterface, DataAwareInterface
      {
          use DocBlockTrait;
          use ProjectTrait;
          use FqsenTrait;
      Severity: Minor
      Found in src/Elements/Class_.php - About 2 hrs to fix

        Method functionLink has 50 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function functionLink(?ElementInterface $element): string
            {
                if ($element === null) {
                    return '';
                }
        Severity: Minor
        Found in src/Printer/Markdown/Printer.php - About 2 hrs to fix

          Method validateFunction has 50 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              private function validateFunction(ElementInterface $element): iterable
              {
                  foreach ($element->getArguments() as $i => $argument) {
                      if (
                          $argument->getType() === null
          Severity: Minor
          Found in src/Analyzer/Rules/TypeMissingRule.php - About 2 hrs to fix

            Method __construct has 13 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                    int $files,
                    int $loc,
                    int $ncloc,
                    int $classes,
                    int $coveredclasses,
            Severity: Major
            Found in src/Enrichers/Clover/ProjectMetrics.php - About 1 hr to fix

              Method __construct has 12 arguments (exceeds 4 allowed). Consider refactoring.
              Open

                      int $loc,
                      int $ncloc,
                      int $classes,
                      int $coveredclasses,
                      int $methods,
              Severity: Major
              Found in src/Enrichers/Clover/FileMetrics.php - About 1 hr to fix

                Method enrich has 36 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    public function enrich(DataAwareInterface $dataHolder): void
                    {
                        switch (true) {
                            case $dataHolder instanceof ProjectInterface:
                                $elements = $this->clover->xpath('//project');
                Severity: Minor
                Found in src/Enrichers/Clover/CloverEnricher.php - About 1 hr to fix

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

                      public function analyze(ElementInterface $element): iterable
                      {
                          if (
                              $element instanceof DocBlockAwareInterface
                              && $element->hasDocBlock() === true
                  Severity: Minor
                  Found in src/Analyzer/Rules/DocBlockParamNameOnlyOnceRule.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 outputError has 35 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                      private function outputError(ErrorEvent $event): void
                      {
                          $exception = $event->getThrowable();
                          $this->style->error(
                              [
                  Severity: Minor
                  Found in src/Cli/ErrorReporter.php - About 1 hr to fix

                    Method analyze has 35 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                        public function analyze(ElementInterface $element): iterable
                        {
                            if (
                                $element instanceof DocBlockAwareInterface
                                && $element->hasDocBlock() === true
                    Severity: Minor
                    Found in src/Analyzer/Rules/DocBlockDeprecatedCorrespondingSeeRule.php - About 1 hr to fix

                      Method execute has 35 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                          protected function execute(InputInterface $input, OutputInterface $output)
                          {
                              $analyzeOption = $input->getOption('analyze');
                              $generateOption = $input->getOption('generate');
                              if ($analyzeOption === $generateOption) {
                      Severity: Minor
                      Found in src/Cli/GenerateCommand.php - About 1 hr to fix

                        Method createFromConfig has 33 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                            public static function createFromConfig(ConfigInterface $config)
                            {
                                $rules = [];
                                $rulesConfig = self::mergeWithDefaultRules($config->getRules());
                        
                        
                        Severity: Minor
                        Found in src/Analyzer/Rules.php - About 1 hr to fix

                          Function mergeWithDefaultRules has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
                          Open

                              private static function mergeWithDefaultRules(array $rulesConfig): array
                              {
                                  $mergedRuleConfig = self::DEFAULT;
                                  foreach ($rulesConfig as $id => $config) {
                                      if (is_array($config) === false) {
                          Severity: Minor
                          Found in src/Analyzer/Rules.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 addFile has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
                          Open

                              public function addFile(File $file): void
                              {
                                  $this->files[$file->getPath()] = $file;
                          
                                  foreach ($this->walk([$file]) as $element) {
                          Severity: Minor
                          Found in src/Elements/ElementsIndex.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 enrich has 31 lines of code (exceeds 25 allowed). Consider refactoring.
                          Open

                              public function enrich(ProjectInterface $project): void
                              {
                                  $enrichers = $this->enrichers->getEnrichers();
                                  $elements = $project->getElements();
                          
                          
                          Severity: Minor
                          Found in src/ProjectEnricher.php - About 1 hr to fix

                            Method analyze has 31 lines of code (exceeds 25 allowed). Consider refactoring.
                            Open

                                public function analyze(ElementInterface $element): iterable
                                {
                                    if (
                                        $element instanceof DocBlockAwareInterface
                                        && $element->hasDocBlock() === true
                            Severity: Minor
                            Found in src/Analyzer/Rules/DocBlockParamNameOnlyOnceRule.php - About 1 hr to fix
                              Severity
                              Category
                              Status
                              Source
                              Language