MPOS/php-mpos

View on GitHub
include/smarty/libs/Smarty.class.php

Summary

Maintainability
F
6 days
Test Coverage

File Smarty.class.php has 656 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
/**
 * Project:     Smarty: the PHP compiling template engine
 * File:        Smarty.class.php
 * SVN:         $Id: Smarty.class.php 4800 2013-12-15 15:19:01Z Uwe.Tews@googlemail.com $
Severity: Major
Found in include/smarty/libs/Smarty.class.php - About 1 day to fix

    Smarty has 42 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class Smarty extends Smarty_Internal_TemplateBase
    {
        /**#@+
         * constant definitions
         */
    Severity: Minor
    Found in include/smarty/libs/Smarty.class.php - About 5 hrs to fix

      Function loadPlugin has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring.
      Open

          public function loadPlugin($plugin_name, $check = true)
          {
              // if function or class exists, exit silently (already loaded)
              if ($check && (is_callable($plugin_name) || class_exists($plugin_name, false))) {
                  return true;
      Severity: Minor
      Found in include/smarty/libs/Smarty.class.php - About 3 hrs 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 createTemplate has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
      Open

          public function createTemplate($template, $cache_id = null, $compile_id = null, $parent = null, $do_clone = true)
          {
              if (!empty($cache_id) && (is_object($cache_id) || is_array($cache_id))) {
                  $parent = $cache_id;
                  $cache_id = null;
      Severity: Minor
      Found in include/smarty/libs/Smarty.class.php - About 2 hrs 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 mutingErrorHandler has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
      Open

          public static function mutingErrorHandler($errno, $errstr, $errfile, $errline, $errcontext)
          {
              $_is_muted_directory = false;
      
              // add the SMARTY_DIR to the list of muted directories
      Severity: Minor
      Found in include/smarty/libs/Smarty.class.php - About 2 hrs 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 createTemplate has 46 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function createTemplate($template, $cache_id = null, $compile_id = null, $parent = null, $do_clone = true)
          {
              if (!empty($cache_id) && (is_object($cache_id) || is_array($cache_id))) {
                  $parent = $cache_id;
                  $cache_id = null;
      Severity: Minor
      Found in include/smarty/libs/Smarty.class.php - About 1 hr to fix

        Method loadPlugin has 43 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function loadPlugin($plugin_name, $check = true)
            {
                // if function or class exists, exit silently (already loaded)
                if ($check && (is_callable($plugin_name) || class_exists($plugin_name, false))) {
                    return true;
        Severity: Minor
        Found in include/smarty/libs/Smarty.class.php - About 1 hr to fix

          Method mutingErrorHandler has 34 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public static function mutingErrorHandler($errno, $errstr, $errfile, $errline, $errcontext)
              {
                  $_is_muted_directory = false;
          
                  // add the SMARTY_DIR to the list of muted directories
          Severity: Minor
          Found in include/smarty/libs/Smarty.class.php - About 1 hr to fix

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

                public function addAutoloadFilters($filters, $type=null)
                {
                    if ($type !== null) {
                        if (!empty($this->autoload_filters[$type])) {
                            $this->autoload_filters[$type] = array_merge($this->autoload_filters[$type], (array) $filters);
            Severity: Minor
            Found in include/smarty/libs/Smarty.class.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 addConfigDir has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
            Open

                public function addConfigDir($config_dir, $key=null)
                {
                    // make sure we're dealing with an array
                    $this->config_dir = (array) $this->config_dir;
            
            
            Severity: Minor
            Found in include/smarty/libs/Smarty.class.php - About 55 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 addTemplateDir has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
            Open

                public function addTemplateDir($template_dir, $key=null)
                {
                    // make sure we're dealing with an array
                    $this->template_dir = (array) $this->template_dir;
            
            
            Severity: Minor
            Found in include/smarty/libs/Smarty.class.php - About 55 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 addPluginsDir has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
            Open

                public function addPluginsDir($plugins_dir)
                {
                    // make sure we're dealing with an array
                    $this->plugins_dir = (array) $this->plugins_dir;
            
            
            Severity: Minor
            Found in include/smarty/libs/Smarty.class.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 createTemplate has 5 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                public function createTemplate($template, $cache_id = null, $compile_id = null, $parent = null, $do_clone = true)
            Severity: Minor
            Found in include/smarty/libs/Smarty.class.php - About 35 mins to fix

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

                  public static function mutingErrorHandler($errno, $errstr, $errfile, $errline, $errcontext)
              Severity: Minor
              Found in include/smarty/libs/Smarty.class.php - About 35 mins to fix

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

                    public function clearCache($template_name, $cache_id = null, $compile_id = null, $exp_time = null, $type = null)
                Severity: Minor
                Found in include/smarty/libs/Smarty.class.php - About 35 mins to fix

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

                      public function getGlobal($varname = null)
                      {
                          if (isset($varname)) {
                              if (isset(self::$global_tpl_vars[$varname])) {
                                  return self::$global_tpl_vars[$varname]->value;
                  Severity: Minor
                  Found in include/smarty/libs/Smarty.class.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 enableSecurity has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                  Open

                      public function enableSecurity($security_class = null)
                      {
                          if ($security_class instanceof Smarty_Security) {
                              $this->security_policy = $security_class;
                  
                  
                  Severity: Minor
                  Found in include/smarty/libs/Smarty.class.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

                  Avoid too many return statements within this method.
                  Open

                                      return $file;
                  Severity: Major
                  Found in include/smarty/libs/Smarty.class.php - About 30 mins to fix

                    Avoid too many return statements within this method.
                    Open

                            return false;
                    Severity: Major
                    Found in include/smarty/libs/Smarty.class.php - About 30 mins to fix

                      Avoid too many return statements within this method.
                      Open

                                              return $file;
                      Severity: Major
                      Found in include/smarty/libs/Smarty.class.php - About 30 mins to fix

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

                            public function addTemplateDir($template_dir, $key=null)
                            {
                                // make sure we're dealing with an array
                                $this->template_dir = (array) $this->template_dir;
                        
                        
                        Severity: Major
                        Found in include/smarty/libs/Smarty.class.php and 1 other location - About 6 hrs to fix
                        include/smarty/libs/Smarty.class.php on lines 921..947

                        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 222.

                        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 function addConfigDir($config_dir, $key=null)
                            {
                                // make sure we're dealing with an array
                                $this->config_dir = (array) $this->config_dir;
                        
                        
                        Severity: Major
                        Found in include/smarty/libs/Smarty.class.php and 1 other location - About 6 hrs to fix
                        include/smarty/libs/Smarty.class.php on lines 854..879

                        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 222.

                        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

                        There are no issues that match your filters.

                        Category
                        Status