Showing 13 of 13 total issues

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

    private function getDocBlock(): array
    {
        $tags = [
            [
                'name'        => 'noinspection',
Severity: Minor
Found in src/Pipe/src/Console/BuildAutocompleteCommand.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

Method getDocBlock has 40 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    private function getDocBlock(): array
    {
        $tags = [
            [
                'name'        => 'noinspection',
Severity: Minor
Found in src/Pipe/src/Console/BuildAutocompleteCommand.php - About 1 hr to fix

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

        public function __toString(): string
        {
            try {
                $id    = $this->getObjectId();
                $left  = $this->getLeftArguments() ?: '?';
    Severity: Minor
    Found in src/Curry/src/Renderer/ClosureRenderer.php - About 1 hr to fix

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

          public function execute(InputInterface $input, OutputInterface $output): int
          {
              $docblock = DocBlockGenerator::fromArray($this->getDocBlock());
              $docblock->setWordWrap(false);
      
      
      Severity: Minor
      Found in src/Pipe/src/Console/BuildAutocompleteCommand.php - About 1 hr to fix

        Avoid too many return statements within this method.
        Open

                return '?';
        Severity: Major
        Found in src/Curry/src/Renderer/ValueToString.php - About 30 mins to fix

          Avoid too many return statements within this method.
          Open

                              return $this->renderAsJson($value);
          Severity: Major
          Found in src/Pipe/src/RendererTrait.php - About 30 mins to fix

            Avoid too many return statements within this method.
            Open

                        return $this->resourceToString($argument);
            Severity: Major
            Found in src/Curry/src/Renderer/ValueToString.php - About 30 mins to fix

              Avoid too many return statements within this method.
              Open

                              return \get_class($value) . ' { ' . $this->splitIterableValues($value) . ' }';
              Severity: Major
              Found in src/Pipe/src/RendererTrait.php - About 30 mins to fix

                Avoid too many return statements within this method.
                Open

                        return static::fromClosure(fn() => $callable);
                Severity: Major
                Found in src/Curry/src/FactoryTrait.php - About 30 mins to fix

                  Avoid too many return statements within this method.
                  Open

                              return $this->objectToString($argument);
                  Severity: Major
                  Found in src/Curry/src/Renderer/ValueToString.php - About 30 mins to fix

                    Avoid too many return statements within this method.
                    Open

                                    return $this->renderFallback($value);
                    Severity: Major
                    Found in src/Pipe/src/RendererTrait.php - About 30 mins to fix

                      Function valueToString has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                      Open

                          protected function valueToString($argument, bool $deep = true): string
                          {
                              if (Placeholder::match($argument)) {
                                  return '_';
                              }
                      Severity: Minor
                      Found in src/Curry/src/Renderer/ValueToString.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

                      Function lazyFilter has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                      Open

                          public static function lazyFilter(iterable $items, \Closure $filter = null): \Traversable
                          {
                              foreach ($items as $key => $value) {
                                  if (self::match($value) && ($filter === null || $filter($key, $items))) {
                                      continue;
                      Severity: Minor
                      Found in src/Placeholder/src/Placeholder.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

                      Severity
                      Category
                      Status
                      Source
                      Language