Showing 30 of 38 total issues
Function compress
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
public function compress($fromFilePath, $toFilePath)
{
$this->parent->log(' - Compressing from file[##] to [##]', $fromFilePath, $toFilePath);
// Compress only valid resources
- 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
Function removeUSEStatement
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
private function removeUSEStatement($code, array $classes)
{
// Iterate found use statements
foreach (array_unique($classes) as $full_class) {
// Ignore trait uses
- 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
Function transformClassName
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
private function transformClassName($source, $className, $php, $ns)
{
// Create copy
$nClassName = trim($className);
- 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
Function removeUSE
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
public function removeUSE($code)
{
// Find all uses in file
$matches = array();
if (preg_match_all(self::PAT_USE, $code, $matches)) {
- 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
Method __construct
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
Compressor & $compressor,
Module $resolver,
$ignoredExtensions = array(),
$ignoredFiles = array(),
$ignoredFolders = array())
Method __construct
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
public function __construct($output = 'out/', $debug = false, $environment = 'prod', $phpVersion = PHP_VERSION, $configuration = array())
Avoid too many return
statements within this method. Open
return $main_code;
Avoid too many return
statements within this method. Open
return $main_code;
Function classes_to_ns_files
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
private function classes_to_ns_files($collection, & $classes = array())
{
// Соберем коллекцию загруженных интерфейсов их файлов по пространствам имен
foreach ($collection as $class) {
$ac = new \ReflectionClass($class);
- 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
Function compress
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
public function compress()
{
// Cache module ID
$id = $this->module->id();
- 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"