phug-php/reader

View on GitHub

Showing 6 of 43 total issues

File Reader.php has 430 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

namespace Phug;

use Phug\Util\Partial\PathTrait;
Severity: Minor
Found in Reader.php - About 6 hrs to fix

    Reader has 42 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class Reader
    {
        use PathTrait;
    
        /**
    Severity: Minor
    Found in Reader.php - About 5 hrs to fix

      Function readExpression has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring.
      Open

          public function readExpression(array $breaks = null, array $brackets = null)
          {
              if (!$this->hasLength()) {
                  return;
              }
      Severity: Minor
      Found in Reader.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

      Method readExpression has 48 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function readExpression(array $breaks = null, array $brackets = null)
          {
              if (!$this->hasLength()) {
                  return;
              }
      Severity: Minor
      Found in Reader.php - About 1 hr to fix

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

            public function readString(array $escapeSequences = null, $raw = false)
            {
                if (!$this->peekQuote()) {
                    return;
                }
        Severity: Minor
        Found in Reader.php - About 1 hr to fix

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

              public function readString(array $escapeSequences = null, $raw = false)
              {
                  if (!$this->peekQuote()) {
                      return;
                  }
          Severity: Minor
          Found in Reader.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