bkdotcom/PHPDebugConsole

View on GitHub

Showing 131 of 158 total issues

File Config.php has 303 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

/**
 * This file is part of PHPDebugConsole
 *
Severity: Minor
Found in src/Debug/Config.php - About 3 hrs to fix

    File MySqli.php has 287 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    
    /**
     * This file is part of PHPDebugConsole
     *
    Severity: Minor
    Found in src/Debug/Collector/MySqli.php - About 2 hrs to fix

      File Wamp.php has 276 lines of code (exceeds 250 allowed). Consider refactoring.
      Open

      <?php
      
      /**
       * Route PHPDebugConsole method calls to
       * WAMP (Web Application Messaging Protocol) router
      Severity: Minor
      Found in src/Debug/Route/Wamp.php - About 2 hrs to fix

        AbstractValue has 22 functions (exceeds 20 allowed). Consider refactoring.
        Open

        abstract class AbstractValue extends AbstractComponent
        {
            /** @var Debug */
            public $debug;
        
        
        Severity: Minor
        Found in src/Debug/Dump/AbstractValue.php - About 2 hrs to fix

          Value has 21 functions (exceeds 20 allowed). Consider refactoring.
          Open

          class Value extends TextValue
          {
              /** @var string */
              protected $escapeReset = "\e[0m";
          
          
          Severity: Minor
          Found in src/Debug/Dump/TextAnsi/Value.php - About 2 hrs to fix

            SlackMessage has 21 functions (exceeds 20 allowed). Consider refactoring.
            Open

            class SlackMessage implements JsonSerializable
            {
                /**
                 * @var array{
                 *   attachments: list<array>,
            Severity: Minor
            Found in src/Slack/SlackMessage.php - About 2 hrs to fix

              File Methods.php has 252 lines of code (exceeds 250 allowed). Consider refactoring.
              Open

              <?php
              
              /**
               * This file is part of PHPDebugConsole
               *
              Severity: Minor
              Found in src/Debug/Abstraction/Object/Methods.php - About 2 hrs to fix

                Function reduceDataFill has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
                Open

                    protected function reduceDataFill($max, $logBack = array())
                    {
                        $indexes = \array_reverse(\array_keys($logBack));
                        $depth = 0;
                        $groupOnly = false;
                Severity: Minor
                Found in src/Debug/Route/ChromeLogger.php - About 1 hr 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 enhanceInner has 33 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                export function enhanceInner ($obj) {
                  var $inner = $obj.find('> .object-inner')
                  var accessible = $obj.data('accessible')
                  var callPostToggle = null // or "local", or "allDesc"
                  if ($obj.is('.enhanced')) {
                Severity: Minor
                Found in src/Debug/js_src/enhanceObject.js - About 1 hr to fix

                  Function buildChannelLis has 32 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                  function buildChannelLis (channels, nameRoot, checkedChannels, prepend) {
                    var $li
                    var $lis = []
                    var channel
                    var channelName = ''
                  Severity: Minor
                  Found in src/Debug/js_src/enhanceMain.js - About 1 hr to fix

                    Function extractTypeFromBody has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
                    Open

                        public static function extractTypeFromBody(array $parsed, array $info) // phpcs:ignore Generic.CodeAnalysis.UnusedFunctionParameter
                        {
                            $tagStr = $info['tagStr'];
                            $type = '';
                            $nestingLevel = 0;
                    Severity: Minor
                    Found in src/Debug/Utility/PhpDoc/Helper.php - About 1 hr 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 visToggles has 30 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                    function visToggles ($inner, accessible) {
                      var flags = {
                        hasProtected: $inner.children('.protected').not('.magic, .magic-read, .magic-write').length > 0,
                        hasPrivate: $inner.children('.private').not('.magic, .magic-read, .magic-write').length > 0,
                        hasExcluded: $inner.children('.debuginfo-excluded').hide().length > 0,
                    Severity: Minor
                    Found in src/Debug/js_src/enhanceObject.js - About 1 hr to fix

                      Function tippyContentBuildTitle has 29 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                      function tippyContentBuildTitle(title, $ref) {
                        switch (title) {
                          case 'Deprecated':
                            title = tippyContentDeprecated($ref, title)
                            break
                      Severity: Minor
                      Found in src/Debug/js_src/Tooltip.js - About 1 hr to fix

                        Method buildChannelTree has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                            protected function buildChannelTree()
                            {
                                $channels = $this->dumper->channels;
                                if (empty($channels)) {
                                    return array();
                        Severity: Minor
                        Found in src/Debug/Route/Html.php - About 1 hr to fix

                          Function buildSubscriberInfoFromValues has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
                          Open

                              private static function buildSubscriberInfoFromValues($values)
                              {
                                  $subscriberInfo = array(
                                      'callable' => null,
                                      'onlyOnce' => false,
                          Severity: Minor
                          Found in src/PubSub/InterfaceManager.php - About 1 hr 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 autoArgsTest has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
                          Open

                              private function autoArgsTest($file, $functionStartLine, $callerLine)
                              {
                                  if ($file === null) {
                                      return false;
                                  }
                          Severity: Minor
                          Found in src/Debug/Plugin/Method/Group.php - About 1 hr 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 findEvalCode has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
                          Open

                              private static function findEvalCode(array $backtrace, $index)
                              {
                                  $backtrace = \array_slice($backtrace, $index);
                                  $lines = false;
                                  foreach ($backtrace as $frame) {
                          Severity: Minor
                          Found in src/Backtrace/Context.php - About 1 hr 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 getLastFrame has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
                          Open

                              private function getLastFrame()
                              {
                                  $maxDepthBak = \ini_set('xdebug.var_display_max_depth', 3);
                                  $backtrace = \xdebug_get_function_stack();
                                  $backtrace = \array_reverse($backtrace);
                          Severity: Minor
                          Found in src/Debug/Utility/FindExit.php - About 1 hr 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 clearErrorsHelper has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
                          Open

                              private function clearErrorsHelper(&$log, $clear = true)
                              {
                                  $errorsNotCleared = array();
                                  foreach ($log as $k => $logEntry) {
                                      if (\in_array($logEntry['method'], array('error', 'warn'), true) === false) {
                          Severity: Minor
                          Found in src/Debug/Plugin/Method/Clear.php - About 1 hr 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 getInterfaces has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
                          Open

                              protected function getInterfaces(ReflectionClass $reflector)
                              {
                                  $interfaces = array();
                                  $remove = array();
                                  foreach ($reflector->getInterfaces() as $classname => $refClass) {
                          Severity: Minor
                          Found in src/Debug/Abstraction/Object/Definition.php - About 1 hr 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