finally-a-fast/faftephp

View on GitHub

Showing 45 of 149 total issues

Method getRawValue has 34 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function &getRawValue($value)
    {
        if (is_array($value) || is_object($value)) {
            return $value;
        }
Severity: Minor
Found in src/Parser.php - About 1 hr to fix

    Method refresh has 33 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function refresh(): void
        {
            if ($this->mode === self::MODE_DEV) {
                $this->debugStartTime = microtime(true);
            }
    Severity: Minor
    Found in src/Parser.php - About 1 hr to fix

      Method elementSettings has 33 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function elementSettings(): array
          {
              return [
                  new ElementSetting([
                      'name' => 'string',
      Severity: Minor
      Found in src/Elements/FormatAsDatetime.php - About 1 hr to fix

        Method dateTimeFormatter has 33 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            protected function dateTimeFormatter(int $type, $dateTime, $format, $inputTimeZone = null, $timeZone = null)
            {
                if ($inputTimeZone === null) {
                    $inputTimeZone = new DateTimeZone(date_default_timezone_get());
                }
        Severity: Minor
        Found in src/Parser.php - About 1 hr to fix

          Method elementSettings has 33 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public function elementSettings(): array
              {
                  return [
                      new ElementSetting([
                          'name' => 'string',
          Severity: Minor
          Found in src/Elements/FormatAsTime.php - About 1 hr to fix

            Method run has 32 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                public function run(): string
                {
                    /**
                     * @var string $loopEach
                     */
            Severity: Minor
            Found in src/Elements/Loop.php - About 1 hr to fix

              Method elementSettings has 31 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  public function elementSettings(): array
                  {
                      return [
                          new ElementSetting([
                              'name' => 'value',
              Severity: Minor
              Found in src/Elements/FormatAsShortSize.php - About 1 hr to fix

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

                    public static function checkConditionArray(string $type, array $conditions): bool
                    {
                        $result = false;
                
                        foreach ($conditions as $condition) {
                Severity: Minor
                Found in src/Elements/ConditionalStatement.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 dateTimeFormatter has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
                Open

                    protected function dateTimeFormatter(int $type, $dateTime, $format, $inputTimeZone = null, $timeZone = null)
                    {
                        if ($inputTimeZone === null) {
                            $inputTimeZone = new DateTimeZone(date_default_timezone_get());
                        }
                Severity: Minor
                Found in src/Parser.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 checkConditionArray has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
                Open

                    public function checkConditionArray(string $type, array $conditions): bool
                    {
                        $result = false;
                
                        foreach ($conditions as $condition) {
                Severity: Minor
                Found in src/Helpers/ConditionTrait.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

                Method handleLoopItem has 7 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                        ?int $wrapStep,
                        int $numericIndex,
                        string $body,
                        int $itemCount,
                        string $wrapTag,
                Severity: Major
                Found in src/Elements/Loop.php - About 50 mins to fix

                  Method formatNumber has 6 arguments (exceeds 4 allowed). Consider refactoring.
                  Open

                          $number,
                          int $style,
                          string $pattern = '',
                          array $attributes = [],
                          array $symbols = [],
                  Severity: Minor
                  Found in src/Parser.php - About 45 mins to fix

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

                        protected function dateTimeFormatter(int $type, $dateTime, $format, $inputTimeZone = null, $timeZone = null)
                    Severity: Minor
                    Found in src/Parser.php - About 35 mins to fix

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

                              string $loopEach,
                              string $loopAs,
                              $currentIndex,
                              int $numericIndex,
                              $loopItem
                      Severity: Minor
                      Found in src/Elements/Loop.php - About 35 mins to fix

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

                            public function refresh(): void
                            {
                                if ($this->mode === self::MODE_DEV) {
                                    $this->debugStartTime = microtime(true);
                                }
                        Severity: Minor
                        Found in src/Parser.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 $value;
                        Severity: Major
                        Found in src/Parser.php - About 30 mins to fix

                          Avoid too many return statements within this method.
                          Open

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

                            Avoid too many return statements within this method.
                            Open

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

                              Avoid too many return statements within this method.
                              Open

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

                                Avoid too many return statements within this method.
                                Open

                                        return $value;
                                Severity: Major
                                Found in src/Parser.php - About 30 mins to fix
                                  Severity
                                  Category
                                  Status
                                  Source
                                  Language