src/Phug/Compiler/Compiler.php
File Compiler.php
has 531 lines of code (exceeds 400 allowed). Consider refactoring. Open
Open
<?php
namespace Phug;
// Node compilers
Compiler
has 41 functions (exceeds 30 allowed). Consider refactoring. Open
Open
class Compiler implements ModuleContainerInterface, CompilerInterface, WithUpperLocatorInterface
{
use ModuleContainerTrait;
use YieldHandlerTrait;
Method __construct
has 87 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function __construct($options = null)
{
$this->setOptionsDefaults($options ?: [], [
'paths' => [],
'debug' => false,
Function compileNode
has a Cognitive Complexity of 10 (exceeds 7 allowed). Consider refactoring. Open
Open
public function compileNode(NodeInterface $node, ElementInterface $parent = null)
{
$nodeEvent = new NodeEvent($node);
$this->trigger($nodeEvent);
$node = $nodeEvent->getNode();
- Read upRead up
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"