chris-kruining/utilities

View on GitHub

Showing 40 of 42 total issues

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 subtract has 26 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

              public function subtract(DatePeriod ...$periods): DateRange
              {
                  foreach($periods as $period)
                  {
                      foreach($this->periods->filter(fn($p) => $period->intersectsWith($p)) as $i => $p)
      Severity: Minor
      Found in src/Common/DateRange.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 __get has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
          Open

                  public function __get($name)
                  {
                      switch($name)
                      {
                          case 'years':
          Severity: Minor
          Found in src/Common/DateRange.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 parseOperator has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
          Open

                  private function parseOperator($left, ?string $operator, $right)
                  {
                      switch($operator)
                      {
                          // NOTE(Chris Kruining)
          Severity: Minor
          Found in src/Parser/Expression.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 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

          Method encapsulate has 5 arguments (exceeds 4 allowed). Consider refactoring.
          Open

                  public static function encapsulate(string $input, string $char, string $filter = null, string $lookFor = 'A-Za-z0-9_', int $limit = -1) : string
          Severity: Minor
          Found in src/Common/Regex.php - About 35 mins to fix

            Method replace has 5 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                        $pattern,
                        string $subject,
                        $replacement = '$1',
                        int $limit = -1 ,
                        int &$count = 0
            Severity: Minor
            Found in src/Common/Regex.php - About 35 mins to fix

              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

              Avoid too many return statements within this method.
              Open

                                  return static::init(substr($trimmed, 1, -1))($this->resolvable, $this->variables);
              Severity: Major
              Found in src/Parser/Expression.php - About 30 mins to fix

                Avoid too many return statements within this method.
                Open

                                    return $this->resolvable->$callable(...$parameters);
                Severity: Major
                Found in src/Parser/Expression.php - About 30 mins to fix

                  Avoid too many return statements within this method.
                  Open

                                      return $this->variables[substr($trimmed, 2, -2)];
                  Severity: Major
                  Found in src/Parser/Expression.php - About 30 mins to fix

                    Avoid too many return statements within this method.
                    Open

                                        return $right;
                    Severity: Major
                    Found in src/Parser/Expression.php - About 30 mins to fix

                      Avoid too many return statements within this method.
                      Open

                                          return $callable(...$parameters);
                      Severity: Major
                      Found in src/Parser/Expression.php - About 30 mins to fix

                        Avoid too many return statements within this method.
                        Open

                                            return $key;
                        Severity: Major
                        Found in src/Parser/Expression.php - About 30 mins to fix

                          Avoid too many return statements within this method.
                          Open

                                                  return null;
                          Severity: Major
                          Found in src/Parser/Expression.php - About 30 mins to fix

                            Avoid too many return statements within this method.
                            Open

                                                return $this->resolvable->resolve(substr($trimmed, 1));
                            Severity: Major
                            Found in src/Parser/Expression.php - About 30 mins to fix

                              Avoid too many return statements within this method.
                              Open

                                                  return $this->resolvable->{substr($trimmed, 1)};
                              Severity: Major
                              Found in src/Parser/Expression.php - About 30 mins to fix
                                Severity
                                Category
                                Status
                                Source
                                Language