Showing 30 of 38 total issues
Function compress_php
has a Cognitive Complexity of 213 (exceeds 5 allowed). Consider refactoring. Open
public function compress_php($path, $module = NULL, & $code = array(), $namespace = self::NS_GLOBAL)
{
// TODO: Довести до ума разпознование require - убрать точку с зяпятоц которая остается
// TODO: Убрать пустые линии
// TODO: Анализатор использования функция и переменных??
- 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 parse
has a Cognitive Complexity of 136 (exceeds 5 allowed). Consider refactoring. Open
protected function parse( $path, $module = NULL, & $code = array(), $namespace = self::NS_GLOBAL )
{
$_path = $path;
$path = normalizepath(realpath($path));
- 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 transform
has a Cognitive Complexity of 67 (exceeds 5 allowed). Consider refactoring. Open
public function transform($input, & $output = '')
{
// Get all defined handlers
$handlers = \samsonphp\event\Event::listeners();
- 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 Compressor.php
has 601 lines of code (exceeds 250 allowed). Consider refactoring. Open
<?php
namespace samsonphp\compressor;
use samson\core\Core;
use samson\core\iModule;
Method compress_php
has 208 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function compress_php($path, $module = NULL, & $code = array(), $namespace = self::NS_GLOBAL)
{
// TODO: Довести до ума разпознование require - убрать точку с зяпятоц которая остается
// TODO: Убрать пустые линии
// TODO: Анализатор использования функция и переменных??
Function code_array_to_str
has a Cognitive Complexity of 51 (exceeds 5 allowed). Consider refactoring. Open
public function code_array_to_str(array $code, $no_ns = false)
{
// Соберем весь PHP код модуля
$php_code = '';
foreach ($code as $ns => $files) {
- 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 35 (exceeds 5 allowed). Consider refactoring. Open
public function compress($debug = false, $environment = 'prod', $php_version = PHP_VERSION)
{
// Set compressed project environment
$this->environment = $environment;
- 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 compress
has 128 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function compress($debug = false, $environment = 'prod', $php_version = PHP_VERSION)
{
// Set compressed project environment
$this->environment = $environment;
Method parse
has 123 lines of code (exceeds 25 allowed). Consider refactoring. Open
protected function parse( $path, $module = NULL, & $code = array(), $namespace = self::NS_GLOBAL )
{
$_path = $path;
$path = normalizepath(realpath($path));
Method transform
has 57 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function transform($input, & $output = '')
{
// Get all defined handlers
$handlers = \samsonphp\event\Event::listeners();
Function code_array_combine
has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring. Open
public function code_array_combine(array & $source, array & $target)
{
foreach ($source as $ns => $files) {
// Если в целевом массиве нет нужного NS - создадим
if (!isset($target[$ns])) $target[$ns] = array();
- 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_module
has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring. Open
public function compress_module(iModule &$module, ResourceMap &$data)
{
// Идентификатор модуля
$id = $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"
Further reading
Method removeUSE
has 46 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function removeUSE($code)
{
// Find all uses in file
$matches = array();
if (preg_match_all(self::PAT_USE, $code, $matches)) {
Method process
has 43 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function process()
{
if ($this->_isXhtml === null) {
$this->_isXhtml = (false !== strpos($this->_html, '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML'));
}
Method code_array_to_str
has 41 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function code_array_to_str(array $code, $no_ns = false)
{
// Соберем весь PHP код модуля
$php_code = '';
foreach ($code as $ns => $files) {
Function findAllFires
has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring. Open
public function findAllFires($code)
{
// Resulting collection of arrays
$events = array();
- 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 compress_module
has 33 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function compress_module(iModule &$module, ResourceMap &$data)
{
// Идентификатор модуля
$id = $module->id();
Function compressResources
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
public function compressResources()
{
// Build output module path
$destination = $id == 'local' ? '' : $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"
Further reading
Function update
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
protected function update($fromFilePath, $toFilePath)
{
// Read source file
$text = file_get_contents($fromFilePath);
- 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 isValid
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
protected function isValid($filePath)
{
$this->parent->log(' - Validating file[##]', $filePath);
// Does this file exists
- 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"