efureev/php-support

View on GitHub
src/Structures/Collections/ArrayCollection.php

Summary

Maintainability
D
2 days
Test Coverage

ArrayCollection has 60 functions (exceeds 20 allowed). Consider refactoring.
Open

class ArrayCollection implements Collection, Stringable
{
    /**
     * @var array
     * @psalm-var array<TKey,T>
Severity: Major
Found in src/Structures/Collections/ArrayCollection.php - About 1 day to fix

    File ArrayCollection.php has 454 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    
    declare(strict_types=1);
    
    namespace Php\Support\Structures\Collections;
    Severity: Minor
    Found in src/Structures/Collections/ArrayCollection.php - About 6 hrs to fix

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

          public function groupBy(callable|array|string $groupBy, bool $preserveKeys = false): static
          {
              if (is_array($groupBy) && !$this->useAsCallable($groupBy)) {
                  $nextGroups = $groupBy;
      
      
      Severity: Minor
      Found in src/Structures/Collections/ArrayCollection.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 sortByMany has 29 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          protected function sortByMany(array $comparisons = []): static
          {
              $items = $this->elements;
      
              uasort(
      Severity: Minor
      Found in src/Structures/Collections/ArrayCollection.php - About 1 hr to fix

        Method groupBy has 29 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function groupBy(callable|array|string $groupBy, bool $preserveKeys = false): static
            {
                if (is_array($groupBy) && !$this->useAsCallable($groupBy)) {
                    $nextGroups = $groupBy;
        
        
        Severity: Minor
        Found in src/Structures/Collections/ArrayCollection.php - About 1 hr to fix

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

              public function sortBy(array|string|callable $callback, int $options = SORT_REGULAR, bool $descending = false)
              {
                  if (is_array($callback) && !is_callable($callback)) {
                      return $this->sortByMany($callback);
                  }
          Severity: Minor
          Found in src/Structures/Collections/ArrayCollection.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

          There are no issues that match your filters.

          Category
          Status