MPOS/php-mpos

View on GitHub
include/smarty/libs/sysplugins/smarty_internal_debug.php

Summary

Maintainability
B
5 hrs
Test Coverage

Method display_debug has 36 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public static function display_debug($obj)
    {
        // prepare information of assigned variables
        $ptr = self::get_debug_vars($obj);
        if ($obj instanceof Smarty) {
Severity: Minor
Found in include/smarty/libs/sysplugins/smarty_internal_debug.php - About 1 hr to fix

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

        public static function get_debug_vars($obj)
        {
            $config_vars = $obj->config_vars;
            $tpl_vars = array();
            foreach ($obj->tpl_vars as $key => $var) {
    Severity: Minor
    Found in include/smarty/libs/sysplugins/smarty_internal_debug.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 start_compile has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
    Open

        public static function start_compile($template)
        {
            static $_is_stringy = array('string' => true, 'eval' => true);
            if (!empty($template->compiler->trace_uid)) {
                $key = $template->compiler->trace_uid;
    Severity: Minor
    Found in include/smarty/libs/sysplugins/smarty_internal_debug.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

    Method get_debug_vars has 26 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public static function get_debug_vars($obj)
        {
            $config_vars = $obj->config_vars;
            $tpl_vars = array();
            foreach ($obj->tpl_vars as $key => $var) {
    Severity: Minor
    Found in include/smarty/libs/sysplugins/smarty_internal_debug.php - About 1 hr to fix

      Function get_key has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

          private static function get_key($template)
          {
              static $_is_stringy = array('string' => true, 'eval' => true);
              // calculate Uid if not already done
              if ($template->source->uid == '') {
      Severity: Minor
      Found in include/smarty/libs/sysplugins/smarty_internal_debug.php - About 25 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

      There are no issues that match your filters.

      Category
      Status