bkdotcom/PHPDebugConsole

View on GitHub

Showing 153 of 170 total issues

Function onStart has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

    public function onStart(Abstraction $abs)
    {
        $obj = $abs->getSubject();
        switch (true) {
            case $obj instanceof \DateTime || $obj instanceof \DateTimeImmutable:
Severity: Minor
Found in src/Debug/Abstraction/Object/Subscriber.php - About 45 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 gitBranch has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

    public static function gitBranch($dir = null)
    {
        // exec('git branch') may fail due due to permissions / rights
        // navigate up until we find the ./git/HEAD file
        $dir = $dir ?: \getcwd();
Severity: Minor
Found in src/Debug/Utility/Utility.php - About 45 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 clearSummary has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

    private function clearSummary($flags)
    {
        $return = null;
        $clearErrors = (bool) ($flags & Debug::CLEAR_SUMMARY_ERRORS);
        if ($flags & Debug::CLEAR_SUMMARY) {
Severity: Minor
Found in src/Debug/Plugin/Method/Clear.php - About 45 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 buildAssetOutput has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

    private function buildAssetOutput(array $assets)
    {
        $return = '';
        foreach ($assets as $asset) {
            if (\preg_match('#[\r\n]#', $asset)) {
Severity: Minor
Found in src/Debug/Route/Html.php - About 45 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 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);
Severity: Minor
Found in src/Debug/Utility/Table.php - About 45 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 logParams has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

    protected function logParams()
    {
        if (!$this->params) {
            return;
        }
Severity: Minor
Found in src/Debug/Collector/StatementInfo.php - About 45 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 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 && \is_array($array)) {
            $key = \array_pop($path);
Severity: Minor
Found in src/Debug/Utility/ArrayUtil.php - About 45 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

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())
Severity: Minor
Found in src/Debug/LogEntry.php - About 45 mins to fix

    Function buildInConsole has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

        protected function buildInConsole()
        {
            if (!$this->stats['inConsole']) {
                return '';
            }
    Severity: Minor
    Found in src/Debug/Route/Html/ErrorSummary.php - About 45 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 processSubsCallback has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

        private function processSubsCallback($matches)
        {
            $index = ++$this->subInfo['index'];
            $replace = $matches[0];
            if (\array_key_exists($index, $this->subInfo['args']) === false) {
    Severity: Minor
    Found in src/Debug/Dump/Substitution.php - About 45 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 determineIcon has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
    Open

    function determineIcon ($node) {
      var $icon
      var $node2
      var selector
      if ($node.data('icon')) {
    Severity: Minor
    Found in src/Debug/js_src/enhanceEntries.js - About 45 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

    Method errorFactory has 6 arguments (exceeds 4 allowed). Consider refactoring.
    Open

        protected function errorFactory(self $handler, $errType, $errMsg, $file, $line, $vars = array())
    Severity: Minor
    Found in src/ErrorHandler/ErrorHandler.php - About 45 mins to fix

      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,
      Severity: Minor
      Found in src/PubSub/AbstractManager.php - About 45 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

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

        $delegateNode.on('refresh.debug', function (e) {
          var $root = $(e.target).closest('.debug')
          applyFilter($root)
        })
      Severity: Minor
      Found in src/Debug/js_src/filter.js and 1 other location - About 40 mins to fix
      src/Debug/js_src/filter.js on lines 40..43

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 48.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

        $delegateNode.on('channelAdded.debug', function (e) {
          var $root = $(e.target).closest('.debug')
          updateFilterStatus($root)
        })
      Severity: Minor
      Found in src/Debug/js_src/filter.js and 1 other location - About 40 mins to fix
      src/Debug/js_src/filter.js on lines 44..47

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 48.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

          public static function video($url, $altText, $title, $values = array())
          {
              $default = \array_merge(self::$defaults['video'], array(
                  'alt_text' => $altText,
                  'title' => $title,   // max: 199 chars
      Severity: Minor
      Found in src/Slack/BlockFactory.php and 1 other location - About 40 mins to fix
      src/Slack/BlockFactory.php on lines 202..213

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 93.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

          public static function image($url, $altText, $title = null, $values = array())
          {
              $default = \array_merge(self::$defaults['image'], array(
                  'alt_text' => $altText, // max: 2000 chars
                  'image_url' => $url,    // max: 3000 chars
      Severity: Minor
      Found in src/Slack/BlockFactory.php and 1 other location - About 40 mins to fix
      src/Slack/BlockFactory.php on lines 297..308

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 93.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

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

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

        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)
        Severity: Minor
        Found in src/Debug/Collector/OAuth.php - About 35 mins to fix

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

          function createFileLinkReplace ($string, matches, text, remove, isUpdate) {
          Severity: Minor
          Found in src/Debug/js_src/FileLinks.js - About 35 mins to fix
            Severity
            Category
            Status
            Source
            Language