CORE-POS/IS4C

View on GitHub
pos/is4c-nf/lib/AutoLoader.php

Summary

Maintainability
D
1 day
Test Coverage
D
69%

Function listModules has a Cognitive Complexity of 31 (exceeds 5 allowed). Consider refactoring.
Open

    static public function listModules($baseClass, $includeBase=False)
    {
        $ret = array();
        
        // lookup plugin modules, then standard modules
Severity: Minor
Found in pos/is4c-nf/lib/AutoLoader.php - About 4 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

File AutoLoader.php has 261 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
/*******************************************************************************

    Copyright 2012 Whole Foods Co-op

Severity: Minor
Found in pos/is4c-nf/lib/AutoLoader.php - About 2 hrs to fix

    Function loadClass has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
    Open

        static public function loadClass($name)
        {
            $map = CoreLocal::get("ClassLookup");
            if (!is_array($map)) {
                // attempt to build map before giving up
    Severity: Minor
    Found in pos/is4c-nf/lib/AutoLoader.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 listModules has 52 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        static public function listModules($baseClass, $includeBase=False)
        {
            $ret = array();
            
            // lookup plugin modules, then standard modules
    Severity: Major
    Found in pos/is4c-nf/lib/AutoLoader.php - About 2 hrs to fix

      Method loadClass has 35 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          static public function loadClass($name)
          {
              $map = CoreLocal::get("ClassLookup");
              if (!is_array($map)) {
                  // attempt to build map before giving up
      Severity: Minor
      Found in pos/is4c-nf/lib/AutoLoader.php - About 1 hr to fix

        Method recursiveLoader has 33 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            static private function recursiveLoader($path,&$map=array())
            {
                if(!is_dir($path)) {
                    return $map;
                }
        Severity: Minor
        Found in pos/is4c-nf/lib/AutoLoader.php - About 1 hr to fix

          Function recursiveLoader has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
          Open

              static private function recursiveLoader($path,&$map=array())
              {
                  if(!is_dir($path)) {
                      return $map;
                  }
          Severity: Minor
          Found in pos/is4c-nf/lib/AutoLoader.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 dispatch has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
          Open

              public static function dispatch($redirect=true)
              {
                  $stack = debug_backtrace();
                  if (count($stack) == 1) {
                      $session = new WrappedStorage();
          Severity: Minor
          Found in pos/is4c-nf/lib/AutoLoader.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

          There are no issues that match your filters.

          Category
          Status