efureev/php-support

View on GitHub

Showing 43 of 43 total issues

File URLify.php has 676 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

declare(strict_types=1);

namespace Php\Support\Helpers;
Severity: Major
Found in src/Helpers/URLify.php - About 1 day to fix

    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

      Function fromPostgresArrayWithBraces has a Cognitive Complexity of 52 (exceeds 5 allowed). Consider refactoring.
      Open

          public static function fromPostgresArrayWithBraces(
              ?string $s,
              int $start = 0,
              ?int &$end = null,
              array $braces = [
      Severity: Minor
      Found in src/Helpers/Arr.php - About 1 day 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 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

        File Arr.php has 415 lines of code (exceeds 250 allowed). Consider refactoring.
        Open

        <?php
        
        declare(strict_types=1);
        
        namespace Php\Support\Helpers;
        Severity: Minor
        Found in src/Helpers/Arr.php - About 5 hrs to fix

          Function toScreamingDelimited has a Cognitive Complexity of 29 (exceeds 5 allowed). Consider refactoring.
          Open

              public static function toScreamingDelimited(string $str, string $delimiter, bool $screaming): string
              {
                  $str = self::removeMultiSpace($str);
                  $str = self::addWordBoundariesToNumbers($str);
                  $str = trim($str);
          Severity: Minor
          Found in src/Helpers/Str.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

          Function dataGet has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
          Open

              function dataGet(mixed $target, string|array|int|null $key, mixed $default = null): mixed
              {
                  if ($key === null) {
                      return $target;
                  }
          Severity: Minor
          Found in src/Global/base.php - About 3 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

          Function dataToArray has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
          Open

              public static function dataToArray(mixed $items): mixed
              {
                  if (is_object($items)) {
                      if ($items instanceof JsonSerializable) {
                          return static::dataToArray($items->jsonSerialize());
          Severity: Minor
          Found in src/Helpers/Arr.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

          Arr has 24 functions (exceeds 20 allowed). Consider refactoring.
          Open

          class Arr
          {
              /**
               * Collapse an array of arrays into a single array.
               *
          Severity: Minor
          Found in src/Helpers/Arr.php - About 2 hrs to fix

            Function toCamelInitCase has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
            Open

                public static function toCamelInitCase(string $str, bool $initCase): string
                {
                    $str = self::removeMultiSpace($str);
                    $str = self::addWordBoundariesToNumbers($str);
                    $str = trim($str);
            Severity: Minor
            Found in src/Helpers/Str.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 fromPostgresArrayWithBraces has 56 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                public static function fromPostgresArrayWithBraces(
                    ?string $s,
                    int $start = 0,
                    ?int &$end = null,
                    array $braces = [
            Severity: Major
            Found in src/Helpers/Arr.php - About 2 hrs to fix

              Method toScreamingDelimited has 55 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  public static function toScreamingDelimited(string $str, string $delimiter, bool $screaming): string
                  {
                      $str = self::removeMultiSpace($str);
                      $str = self::addWordBoundariesToNumbers($str);
                      $str = trim($str);
              Severity: Major
              Found in src/Helpers/Str.php - About 2 hrs to fix

                Similar blocks of code found in 2 locations. Consider refactoring.
                Open

                <?php
                
                declare(strict_types=1);
                
                namespace Php\Support\Exceptions;
                Severity: Major
                Found in src/Exceptions/UnknownMethodException.php and 1 other location - About 1 hr to fix
                src/Exceptions/UnknownPropertyException.php on lines 1..44

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 114.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

                Similar blocks of code found in 2 locations. Consider refactoring.
                Open

                <?php
                
                declare(strict_types=1);
                
                namespace Php\Support\Exceptions;
                Severity: Major
                Found in src/Exceptions/UnknownPropertyException.php and 1 other location - About 1 hr to fix
                src/Exceptions/UnknownMethodException.php on lines 1..46

                Duplicated Code

                Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                Tuning

                This issue has a mass of 114.

                We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                Refactorings

                Further Reading

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

                    public static function downcode(string $text, string $language = ''): string
                    {
                        self::initLanguageMap($language);
                
                        if (self::seemsUTF8($text)) {
                Severity: Minor
                Found in src/Helpers/URLify.php - About 1 hr to fix

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

                      public static function has(ArrayAccess|array $array, string|array $keys, string $separator = '.'): bool
                      {
                          $keys = (array)$keys;
                  
                          if (!$array || $keys === []) {
                  Severity: Minor
                  Found in src/Helpers/Arr.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 merge has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                  Open

                      public static function merge(array $res, array $b, bool $replaceArray = true): array
                      {
                          foreach ($b as $key => $val) {
                              if (is_int($key)) {
                                  if (isset($res[$key])) {
                  Severity: Minor
                  Found in src/Helpers/Arr.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 remove has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                  Open

                      public static function remove(array|ArrayObject &$array, array|string $keys): void
                      {
                          $original = &$array;
                          $keys     = (array)$keys;
                  
                  
                  Severity: Minor
                  Found in src/Helpers/Arr.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 toCamelInitCase has 34 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                      public static function toCamelInitCase(string $str, bool $initCase): string
                      {
                          $str = self::removeMultiSpace($str);
                          $str = self::addWordBoundariesToNumbers($str);
                          $str = trim($str);
                  Severity: Minor
                  Found in src/Helpers/Str.php - About 1 hr to fix

                    Consider simplifying this complex logical expression.
                    Open

                                    if (
                                        (
                                            $letter >= 'A'
                                            && $letter <= 'Z'
                                            && $next_letter >= 'a'
                    Severity: Critical
                    Found in src/Helpers/Str.php - About 1 hr to fix
                      Severity
                      Category
                      Status
                      Source
                      Language