bkdotcom/PHPDebugConsole

View on GitHub

Showing 124 of 157 total issues

Method markupIdentifier has 5 arguments (exceeds 4 allowed). Consider refactoring.
Open

    public function markupIdentifier($val, $what = 'className', $tagName = 'span', $attribs = array(), $wbr = false)
Severity: Minor
Found in src/Debug/Dump/Html/Value.php - About 35 mins to fix

    Method dumpExtendsImplements has 5 arguments (exceeds 4 allowed). Consider refactoring.
    Open

        private function dumpExtendsImplements(array $listOrTree, $label, $treeClass, $itemClass, array $interfacesCollapse = array())
    Severity: Minor
    Found in src/Debug/Dump/Html/Object/ExtendsImplements.php - About 35 mins to fix

      Function expandGroupObjNext has 5 arguments (exceeds 4 allowed). Consider refactoring.
      Open

      function expandGroupObjNext ($toggle, $classTarget, $evtTarget, icon, eventNameDone) {
      Severity: Minor
      Found in src/Debug/js_src/expandCollapse.js - About 35 mins to fix

        Function parseParamTest2 has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            private function parseParamTest2($char)
            {
                $endParam = false;
                if ($char === ',') {
                    $endParam = $this->paramParseInfo['depth'] === 1;
        Severity: Minor
        Found in src/Debug/Utility/PhpDoc/ParseMethod.php - About 35 mins to fix

        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 set has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            public function set($path, $value = null)
            {
                if ($path === 'logDest') {
                    $this->setLogDest($value);
                    return;
        Severity: Minor
        Found in src/Debug/Data.php - About 35 mins to fix

        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 getReflectorFromString has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            private static function getReflectorFromString($string)
            {
                $matches = [];
                \preg_match(self::$regex, $string, $matches);
                $defaults = \array_fill_keys(['class', 'constant', 'property', 'method', 'function'], null);
        Severity: Minor
        Found in src/Debug/Utility/Reflection.php - About 35 mins to fix

        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 createFileLink has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

        function createFileLink (string, remove, foundFiles) {
          var $replace
          var $string = $(string)
          var attrs = string.attributes
          var text = $.trim($string.text())
        Severity: Minor
        Found in src/Debug/js_src/FileLinks.js - About 35 mins to fix

        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 getGroupLabel has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            private function getGroupLabel()
            {
                $label = $this->sql;
                $label = \preg_replace('/[\r\n\s]+/', ' ', $label);
                $label = $this->debug->sql->replaceParams($label, $this->params);
        Severity: Minor
        Found in src/Debug/Collector/StatementInfo.php - About 35 mins to fix

        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 getCallerInfo has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            private function getCallerInfo()
            {
                $callerInfo = array();
                $backtrace = \debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 13);
                foreach ($backtrace as $i => $frame) {
        Severity: Minor
        Found in src/Debug/Framework/Yii1_1/LogRouteMeta.php - About 35 mins to fix

        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 logSessionVals has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            private function logSessionVals($sessionNamePassed)
            {
                $namePrev = null;
                if (session_status() !== PHP_SESSION_ACTIVE) {
                    if ($sessionNamePassed === null) {
        Severity: Minor
        Found in src/Debug/Plugin/LogEnv.php - About 35 mins to fix

        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 __invoke has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            public function __invoke(array $parsed, array $info)
            {
                $tagName = $info['tagName'];
                if (self::strStartsWithVariable($parsed['desc'])) {
                    \preg_match('/^(\S*)/', $parsed['desc'], $matches);
        Severity: Minor
        Found in src/Debug/Utility/PhpDoc/ParseParam.php - About 35 mins to fix

        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 cancel has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            public function cancel()
            {
                if ($this->state !== self::PENDING) {
                    return;
                }
        Severity: Minor
        Found in src/Promise/Promise.php - About 35 mins to fix

        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 logListeners has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            private function logListeners($eventName)
            {
                $listeners = $this->eventDispatcher->getListeners($eventName);
                foreach ($listeners as $i => $listener) {
                    if (!($listener instanceof \Closure)) {
        Severity: Minor
        Found in src/Debug/Framework/Laravel/EventsSubscriber.php - About 35 mins to fix

        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 reduceDataSummary has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            private function reduceDataSummary()
            {
                /*
                    Remove non-essential summary entries
                */
        Severity: Minor
        Found in src/Debug/Route/ChromeLogger.php - About 35 mins to fix

        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 isExcluded has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            protected function isExcluded(array $logEntry)
            {
                $category = $logEntry[2];
                if (\strpos($category, 'system.db.') === 0 && \preg_match('/^(Opening|Closing)/', $logEntry[0])) {
                    return false;
        Severity: Minor
        Found in src/Debug/Framework/Yii1_1/LogRoute.php - About 35 mins to fix

        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 handleStringToken has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            private function handleStringToken($token)
            {
                if ($token === '{') {
                    $this->depth++;
                } elseif ($token === '}') {
        Severity: Minor
        Found in src/Debug/Utility/FindExit.php - About 35 mins to fix

        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 onDebugLog has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            public function onDebugLog(LogEntry $logEntry)
            {
                $channelName = $logEntry->getSubject()->getCfg('channelName');
                if ($channelName === 'general.doctrine') {
                    $logEntry['appendLog'] = false;

        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 walkBranch has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            private function walkBranch($keys, $val)
            {
                while (\is_array($val)) {
                    if (\count($val) > 1) {
                        break;
        Severity: Minor
        Found in src/Debug/Utility/FileTree.php - About 35 mins to fix

        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 manageQueue has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            protected function manageQueue()
            {
                $currentTime = \microtime(true);
                foreach ($this->queue as $hash => $curlReqRes) {
                    if (\count($this->processing) >= $this->options['maxConcurrent']) {
        Severity: Minor
        Found in src/CurlHttpMessage/Handler/CurlMulti.php - About 35 mins to fix

        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 recordTokenArray has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            private static function recordTokenArray($token) // phpcs:ignore Generic.Metrics.CyclomaticComplexity
            {
                switch (self::$record) {
                    case 'namespace':
                        switch ($token[0]) {
        Severity: Minor
        Found in src/Debug/Utility/UseStatements.php - About 35 mins to fix

        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

        Severity
        Category
        Status
        Source
        Language