chris-kruining/utilities

View on GitHub

Showing 40 of 42 total issues

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 split has a Cognitive Complexity of 33 (exceeds 5 allowed). Consider refactoring.
      Open

              private function split(string $query): Collection
              {
                  $out = [];
                  $pos = 0;
      
      
      Severity: Minor
      Found in src/Parser/Expression.php - About 4 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

      File Expression.php has 324 lines of code (exceeds 250 allowed). Consider refactoring.
      Open

      <?php
      
      namespace CPB\Utilities\Parser
      {
          use CPB\Utilities\Collections\Collection;
      Severity: Minor
      Found in src/Parser/Expression.php - About 3 hrs to fix

        Method split has 86 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

                private function split(string $query): Collection
                {
                    $out = [];
                    $pos = 0;
        
        
        Severity: Major
        Found in src/Parser/Expression.php - About 3 hrs to fix

          File Table.php has 279 lines of code (exceeds 250 allowed). Consider refactoring.
          Open

          <?php
          
          namespace CPB\Utilities\Collections
          {
              use Core\Utility\Exception\NotImplemented;
          Severity: Minor
          Found in src/Collections/Table.php - About 2 hrs to fix

            Method parseOperator has 60 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                    private function parseOperator($left, ?string $operator, $right)
                    {
                        switch($operator)
                        {
                            // NOTE(Chris Kruining)
            Severity: Major
            Found in src/Parser/Expression.php - About 2 hrs to fix

              Method join has 60 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                      public function join(
                          iterable $iterable,
                          string $localKey,
                          string $foreignKey,
                          JoinStrategy $strategy = null
              Severity: Major
              Found in src/Collections/Table.php - About 2 hrs to fix

                Method __get has 44 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                        public function __get($name)
                        {
                            switch($name)
                            {
                                case 'years':
                Severity: Minor
                Found in src/Common/DateRange.php - About 1 hr to fix

                  Method resolveKey has 43 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                          private function resolveKey($key)
                          {
                              $trimmed = \trim($key);
                  
                              if(\strlen($trimmed) === 0)
                  Severity: Minor
                  Found in src/Parser/Expression.php - About 1 hr 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 parseParameters has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
                      Open

                              private function parseParameters(string $parameters): Collection
                              {
                                  $out = [];
                                  $pos = 0;
                                  $level = 0;
                      Severity: Minor
                      Found in src/Parser/Expression.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 subtract has a Cognitive Complexity of 11 (exceeds 5 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

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

                              public function has($key, string ...$keys): bool
                              {
                                  \array_unshift($keys, $key);
                      
                                  return $this->some(function($i, $row) use($keys){
                      Severity: Minor
                      Found in src/Collections/Table.php - About 1 hr to fix

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

                                private function parseParameters(string $parameters): Collection
                                {
                                    $out = [];
                                    $pos = 0;
                                    $level = 0;
                        Severity: Minor
                        Found in src/Parser/Expression.php - About 1 hr to fix

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

                                  public function get($key, string ...$keys): Resolvable
                                  {
                                      \array_unshift($keys, $key);
                          
                                      if(!$this->has(...$keys))
                          Severity: Minor
                          Found in src/Collections/Table.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 join has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
                            Open

                                    public function join(
                                        iterable $iterable,
                                        string $localKey,
                                        string $foreignKey,
                                        JoinStrategy $strategy = null
                            Severity: Minor
                            Found in src/Collections/Table.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

                            Severity
                            Category
                            Status
                            Source
                            Language