mimmi20/laminas-form-element-group

View on GitHub
src/ElementGroup.php

Summary

Maintainability
D
1 day
Test Coverage
A
100%

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

    public function populateValues(iterable $data): void
    {
        if ($data instanceof Traversable) {
            $data = ArrayUtils::iteratorToArray($data);
        }
Severity: Minor
Found in src/ElementGroup.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 extract has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
Open

    public function extract(): array
    {
        if (!is_array($this->object)) {
            return [];
        }
Severity: Minor
Found in src/ElementGroup.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

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

    public function prepareElement(FormInterface $form): void
    {
        $fieldCount = 0;

        if ($this->targetElement !== null) {
Severity: Minor
Found in src/ElementGroup.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 populateValues has 47 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function populateValues(iterable $data): void
    {
        if ($data instanceof Traversable) {
            $data = ArrayUtils::iteratorToArray($data);
        }
Severity: Minor
Found in src/ElementGroup.php - About 1 hr to fix

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

        public function extract(): array
        {
            if (!is_array($this->object)) {
                return [];
            }
    Severity: Minor
    Found in src/ElementGroup.php - About 1 hr to fix

      Method prepareElement has 27 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function prepareElement(FormInterface $form): void
          {
              $fieldCount = 0;
      
              if ($this->targetElement !== null) {
      Severity: Minor
      Found in src/ElementGroup.php - About 1 hr to fix

        There are no issues that match your filters.

        Category
        Status