kahlan/kahlan

View on GitHub
src/Block.php

Summary

Maintainability
B
6 hrs
Test Coverage
A
97%

Block has 28 functions (exceeds 20 allowed). Consider refactoring.
Open

abstract class Block
{

    /**
     * The block type.
Severity: Minor
Found in src/Block.php - About 3 hrs to fix

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

        public function __construct($config = [])
        {
            $defaults = [
                'suite'   => null,
                'parent'  => null,
    Severity: Minor
    Found in src/Block.php - About 1 hr to fix

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

          protected function _process($options = [])
          {
              $suite = $this->suite();
              if ($suite->root()->focused() && !$this->focused()) {
                  return;
      Severity: Minor
      Found in src/Block.php - About 1 hr to fix

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

            protected function _skipChildren($exception, $emit = false)
            {
                $log = $this->log();
                if ($this instanceof Group) {
                    foreach ($this->children() as $child) {
        Severity: Minor
        Found in src/Block.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 _process has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

            protected function _process($options = [])
            {
                $suite = $this->suite();
                if ($suite->root()->focused() && !$this->focused()) {
                    return;
        Severity: Minor
        Found in src/Block.php - About 25 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

        There are no issues that match your filters.

        Category
        Status