Showing 109 of 2,231 total issues
File Config.php
has 305 lines of code (exceeds 250 allowed). Consider refactoring. Open
<?php
/**
* This file is part of PHPDebugConsole
*
Value
has 22 functions (exceeds 20 allowed). Consider refactoring. Open
class Value extends TextValue
{
/** @var string */
protected $escapeReset = "\e[0m";
AbstractValue
has 22 functions (exceeds 20 allowed). Consider refactoring. Open
abstract class AbstractValue extends AbstractComponent
{
/** @var Debug */
public $debug;
File FindExit.php
has 254 lines of code (exceeds 250 allowed). Consider refactoring. Open
<?php
namespace bdk\Debug\Utility;
use bdk\Backtrace\Xdebug;
Function buildChannelLis
has 27 lines of code (exceeds 25 allowed). Consider refactoring. Open
function buildChannelLis (channels, nameRoot, checkedChannels, prepend) {
var $li
var $lis = []
var channel
var channelNames = Object.keys(channels).sort(function (a, b) {
Method installDependencies
has 26 lines of code (exceeds 25 allowed). Consider refactoring. Open
private static function installDependencies()
{
$composer = $GLOBALS['argv'][0];
$info = array(
'haveSlevomat' => false,
Function pathGet
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
public static function pathGet(&$array, $path, $default = null)
{
$path = \array_reverse(self::pathToArray($path));
$curPath = array();
while ($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 each
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
public function each($requests, array $config = array())
{
if (!isset($config['concurrency'])) {
$config['concurrency'] = 25;
}
- 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 toStringCheck
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
protected function toStringCheck(Error $error)
{
if (PHP_VERSION_ID >= 70400) {
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
Function pathSet
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
public static function pathSet(array &$array, $path, $val)
{
$path = \array_reverse(self::pathToArray($path));
while ($path) {
$key = \array_pop($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 colKeysMerge
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
private static function colKeysMerge(array $curRowKeys, array $colKeys)
{
/** @var list<array-key> */
$newKeys = array();
$count = \count($curRowKeys);
- 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 tabValuesFinish
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
private function tabValuesFinish($vals, Abstraction $abs)
{
$strLenDiff = $abs['strlen'] - $abs['strlenValue'];
if ($strLenDiff) {
$vals['valRaw'] .= '<span class="maxlen">… ' . $strLenDiff . ' more bytes (not logged)</span>';
- 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 valueFromReflection
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
private function valueFromReflection(array $propInfo, Abstraction $abs, ReflectionProperty $refProperty)
{
$refProperty->setAccessible(true); // only accessible via reflection
$obj = $abs->getSubject();
if ($propInfo['isVirtual']) {
- 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 6 arguments (exceeds 4 allowed). Consider refactoring. Open
public function __construct(Debug $subject, $method, $args = array(), $meta = array(), $defaultArgs = array(), $argsToMeta = array())
Function unsubscribeFromPriority
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
protected function unsubscribeFromPriority($eventName, $callable, $priority, $onlyOnce)
{
$search = \array_filter(array(
'callable' => $callable,
'onlyOnce' => $onlyOnce,
- 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 errorFactory
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
protected function errorFactory(self $handler, $errType, $errMsg, $file, $line, $vars = array())
Method __construct
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
public function __construct($consumerKey, $consumerSecret, $signatureMethod = OAUTH_SIG_METHOD_HMACSHA1, $authType = OAUTH_AUTH_TYPE_AUTHORIZATION, $debug = null)
Method bindParam
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
public function bindParam($parameter, &$variable, $dataType = PdoBase::PARAM_STR, $length = null, $driverOptions = null)
Method dumpExtendsImplements
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
private function dumpExtendsImplements(array $listOrTree, $label, $treeClass, $itemClass, array $interfacesCollapse = array())
Method markupIdentifier
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
public function markupIdentifier($val, $what = 'className', $tagName = 'span', $attribs = array(), $wbr = false)