phug-php/compiler

View on GitHub
Compiler.php

Summary

Maintainability
D
2 days
Test Coverage

File Compiler.php has 531 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

namespace Phug;

// Node compilers
Severity: Major
Found in Compiler.php - About 1 day to fix

    Compiler has 41 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class Compiler implements ModuleContainerInterface, CompilerInterface, WithUpperLocatorInterface
    {
        use ModuleContainerTrait;
        use YieldHandlerTrait;
    
    
    Severity: Minor
    Found in Compiler.php - About 5 hrs to fix

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

          public function __construct($options = null)
          {
              $this->setOptionsDefaults($options ?: [], [
                  'paths'                      => [],
                  'debug'                      => false,
      Severity: Major
      Found in Compiler.php - About 3 hrs to fix

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

            public function compileNode(NodeInterface $node, ElementInterface $parent = null)
            {
                $nodeEvent = new NodeEvent($node);
                $this->trigger($nodeEvent);
                $node = $nodeEvent->getNode();
        Severity: Minor
        Found in Compiler.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

        Method assert has 5 arguments (exceeds 4 allowed). Consider refactoring.
        Open

            public function assert($condition, $message, $node = null, $code = 0, $previous = null)
        Severity: Minor
        Found in Compiler.php - About 35 mins to fix

          Function __construct has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
          Open

              public function __construct($options = null)
              {
                  $this->setOptionsDefaults($options ?: [], [
                      'paths'                      => [],
                      'debug'                      => false,
          Severity: Minor
          Found in Compiler.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

          Function compileBlocks has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

              public function compileBlocks()
              {
                  do {
                      $blockProceeded = 0;
                      foreach ($this->getBlocks() as $name => $blocks) {
          Severity: Minor
          Found in Compiler.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