efureev/php-support

View on GitHub

Showing 38 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

                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

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

                        function: (params, onError) => {
                          params.tokens.filter(function filterToken(token) {
                            return token.type === "heading_open";
                          }).forEach(function forToken(token) {
                            if (token.tag === "h2") {
                      Severity: Minor
                      Found in .github/workflows/lint/rules/changelog.js - 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 downcode has a Cognitive Complexity of 11 (exceeds 5 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

                      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