chris-kruining/utilities

View on GitHub
src/Collections/Collection.php

Summary

Maintainability
F
4 days
Test Coverage

Collection has 92 functions (exceeds 20 allowed). Consider refactoring.
Open

    class Collection implements CollectionInterface
    {
        protected
            $items
        ;
Severity: Major
Found in src/Collections/Collection.php - About 1 day to fix

    File Collection.php has 735 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    
    namespace CPB\Utilities\Collections
    {
        use Core\Utility\Exception\Deprecated;
    Severity: Major
    Found in src/Collections/Collection.php - About 1 day to fix

      Function offsetGet has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
      Open

              public function offsetGet(mixed $offset): mixed
              {
                  if((\is_string($offset) || \is_numeric($offset)) && \key_exists($offset, $this->items))
                  {
                      return $this->items[$offset];
      Severity: Minor
      Found in src/Collections/Collection.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 offsetGet has 35 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

              public function offsetGet(mixed $offset): mixed
              {
                  if((\is_string($offset) || \is_numeric($offset)) && \key_exists($offset, $this->items))
                  {
                      return $this->items[$offset];
      Severity: Minor
      Found in src/Collections/Collection.php - About 1 hr to fix

        Function each has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
        Open

                public function each(callable $callback): CollectionInterface
                {
                    $collection = [];
        
                    foreach($this->items as $key => $value)
        Severity: Minor
        Found in src/Collections/Collection.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 offsetSet has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
        Open

                public function offsetSet(mixed $offset, mixed $value): void
                {
                    switch(\gettype($offset))
                    {
                        case 'string':
        Severity: Minor
        Found in src/Collections/Collection.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 offsetExists has 27 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

                public function offsetExists(mixed $offset): bool
                {
                    if((\is_string($offset) || \is_numeric($offset)) && \key_exists($offset, $this->items))
                    {
                        return true;
        Severity: Minor
        Found in src/Collections/Collection.php - About 1 hr to fix

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

                  public function each(callable $callback): CollectionInterface
                  {
                      $collection = [];
          
                      foreach($this->items as $key => $value)
          Severity: Minor
          Found in src/Collections/Collection.php - About 1 hr to fix

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

                    public function offsetSet(mixed $offset, mixed $value): void
                    {
                        switch(\gettype($offset))
                        {
                            case 'string':
            Severity: Minor
            Found in src/Collections/Collection.php - About 1 hr to fix

              Function offsetExists has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
              Open

                      public function offsetExists(mixed $offset): bool
                      {
                          if((\is_string($offset) || \is_numeric($offset)) && \key_exists($offset, $this->items))
                          {
                              return true;
              Severity: Minor
              Found in src/Collections/Collection.php - About 55 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 powerSet has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
              Open

                      public function powerSet(int $minLength = 1): CollectionInterface
                      {
                          $count = \count($this);
                          $members = 2**$count;
                          $values = \array_values($this->items);
              Severity: Minor
              Found in src/Collections/Collection.php - About 45 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 topologicalSort has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
              Open

                      public function topologicalSort(string $edgeKey): CollectionInterface
                      {
                          $keys = array_fill_keys(array_keys($this->items), 0);
                          $values = $this->map(fn($k, $v) => $v[$edgeKey]);
              
              Severity: Minor
              Found in src/Collections/Collection.php - About 35 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