src/Phug/Reader/Reader.php
Reader
has 42 functions (exceeds 30 allowed). Consider refactoring. Open
Open
class Reader
{
use PathTrait;
/**
Function readExpression
has a Cognitive Complexity of 25 (exceeds 7 allowed). Consider refactoring. Open
Open
public function readExpression(array $breaks = null, array $brackets = null)
{
if (!$this->hasLength()) {
return;
}
- 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"
Further reading
File Reader.php
has 430 lines of code (exceeds 400 allowed). Consider refactoring. Open
Open
<?php
namespace Phug;
use Phug\Util\Partial\PathTrait;
Method readExpression
has 48 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function readExpression(array $breaks = null, array $brackets = null)
{
if (!$this->hasLength()) {
return;
}
Method readString
has 32 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function readString(array $escapeSequences = null, $raw = false)
{
if (!$this->peekQuote()) {
return;
}
Function readString
has a Cognitive Complexity of 10 (exceeds 7 allowed). Consider refactoring. Open
Open
public function readString(array $escapeSequences = null, $raw = false)
{
if (!$this->peekQuote()) {
return;
}
- 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"