Showing 7 of 9 total issues

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

    public function select($field, array $attributes = array())
    {
        $select = $this->menu($field);
        $attributes['name'] = $field;
        $attributes['id'] = $this->validator->id($field);
Severity: Minor
Found in src/Component.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 Component.php has 328 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

namespace BootPress\Form;

use BootPress\Page\Component as Page;
Severity: Minor
Found in src/Component.php - About 3 hrs to fix

    Method select has 85 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function select($field, array $attributes = array())
        {
            $select = $this->menu($field);
            $attributes['name'] = $field;
            $attributes['id'] = $this->validator->id($field);
    Severity: Major
    Found in src/Component.php - About 3 hrs to fix

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

          public function radio($field, array $attributes = array(), $wrap = '<label>%s</label>')
          {
              $radios = array();
              $checked = (array) $this->defaultValue($field);
              foreach ($this->menu($field) as $value => $description) {
      Severity: Minor
      Found in src/Component.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 checkbox has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
      Open

          public function checkbox($field, array $attributes = array(), $wrap = '<label>%s</label>')
          {
              $boxes = array();
              $checked = (array) $this->defaultValue($field);
              foreach ($this->menu($field) as $value => $description) {
      Severity: Minor
      Found in src/Component.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 flatten has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

          private function flatten(array $array)
          {
              $single = array();
              if (isset($array['hier'])) {
                  unset($array['hier']);
      Severity: Minor
      Found in src/Component.php - About 45 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 header has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

          public function header()
          {
              if (isset($this->header['upload']) && is_numeric($this->header['upload'])) {
                  $this->header['enctype'] = 'multipart/form-data';
                  if ($this->header['upload'] <= 100) {
      Severity: Minor
      Found in src/Component.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

      Severity
      Category
      Status
      Source
      Language