phug-php/phug

View on GitHub
src/Phug/Reader/Reader.php

Summary

Maintainability
D
1 day
Test Coverage
A
100%

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

class Reader
{
    use PathTrait;

    /**
Severity: Minor
Found in src/Phug/Reader/Reader.php - About 4 hrs to fix

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

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

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

    <?php
    
    namespace Phug;
    
    use Phug\Util\Partial\PathTrait;
    Severity: Minor
    Found in src/Phug/Reader/Reader.php - About 2 hrs to fix

      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 src/Phug/Reader/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 src/Phug/Reader/Reader.php - About 1 hr to fix

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

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

          There are no issues that match your filters.

          Category
          Status