kahlan/kahlan

View on GitHub
src/Jit/ClassLoader.php

Summary

Maintainability
F
3 days
Test Coverage
A
93%

File ClassLoader.php has 498 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
namespace Kahlan\Jit;

use InvalidArgumentException;
use RecursiveIteratorIterator;
Severity: Minor
Found in src/Jit/ClassLoader.php - About 7 hrs to fix

    Function _findFileWithExtension has a Cognitive Complexity of 40 (exceeds 5 allowed). Consider refactoring.
    Open

        protected function _findFileWithExtension($class, $ext)
        {
            // PSR-4 lookup
            $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext;
    
    
    Severity: Minor
    Found in src/Jit/ClassLoader.php - About 6 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

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

    class ClassLoader
    {
        /**
         * Autoloaded files.
         */
    Severity: Minor
    Found in src/Jit/ClassLoader.php - About 5 hrs to fix

      Method _findFileWithExtension has 44 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          protected function _findFileWithExtension($class, $ext)
          {
              // PSR-4 lookup
              $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext;
      
      
      Severity: Minor
      Found in src/Jit/ClassLoader.php - About 1 hr to fix

        Method add has 30 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function add($prefix, $paths, $prepend = false)
            {
                if (!$prefix) {
                    if ($prepend) {
                        $this->_fallbackDirsPsr0 = array_merge(
        Severity: Minor
        Found in src/Jit/ClassLoader.php - About 1 hr to fix

          Method addPsr4 has 30 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public function addPsr4($prefix, $paths, $prepend = false)
              {
                  if (!$prefix) {
                      // Register directories for the root namespace.
                      if ($prepend) {
          Severity: Minor
          Found in src/Jit/ClassLoader.php - About 1 hr to fix

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

                public function addPsr4($prefix, $paths, $prepend = false)
                {
                    if (!$prefix) {
                        // Register directories for the root namespace.
                        if ($prepend) {
            Severity: Minor
            Found in src/Jit/ClassLoader.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 findFile has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
            Open

                public function findFile($class)
                {
                    // class map lookup
                    if (isset($this->_classMap[$class])) {
                        return $this->_classMap[$class];
            Severity: Minor
            Found in src/Jit/ClassLoader.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 findPath has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
            Open

                public function findPath($namespace, $forceDir = false)
                {
                    $paths = static::prefixes();
                    $logicalPath = trim(strtr($namespace, '\\', DIRECTORY_SEPARATOR), DIRECTORY_SEPARATOR);
            
            
            Severity: Minor
            Found in src/Jit/ClassLoader.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 allowed has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
            Open

                public function allowed($class)
                {
                    foreach ($this->_exclude as $namespace) {
                        if (strpos($class, $namespace) === 0) {
                            return false;
            Severity: Minor
            Found in src/Jit/ClassLoader.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 add has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
            Open

                public function add($prefix, $paths, $prepend = false)
                {
                    if (!$prefix) {
                        if ($prepend) {
                            $this->_fallbackDirsPsr0 = array_merge(
            Severity: Minor
            Found in src/Jit/ClassLoader.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 src/Jit/ClassLoader.php - About 30 mins to fix

              Avoid too many return statements within this method.
              Open

                      return false;
              Severity: Major
              Found in src/Jit/ClassLoader.php - About 30 mins to fix

                There are no issues that match your filters.

                Category
                Status