laravel/framework

View on GitHub
src/Illuminate/Foundation/Application.php

Summary

Maintainability
F
3 days
Test Coverage

Application has 100 functions (exceeds 20 allowed). Consider refactoring.
Open

class Application extends Container implements ApplicationContract, CachesConfiguration, CachesRoutes, HttpKernelInterface
{
    use Macroable;

    /**
Severity: Major
Found in src/Illuminate/Foundation/Application.php - About 1 day to fix

    File Application.php has 712 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    
    namespace Illuminate\Foundation;
    
    use Closure;
    Severity: Major
    Found in src/Illuminate/Foundation/Application.php - About 1 day to fix

      Method registerCoreContainerAliases has 45 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function registerCoreContainerAliases()
          {
              foreach ([
                  'app' => [self::class, \Illuminate\Contracts\Container\Container::class, \Illuminate\Contracts\Foundation\Application::class, \Psr\Container\ContainerInterface::class],
                  'auth' => [\Illuminate\Auth\AuthManager::class, \Illuminate\Contracts\Auth\Factory::class],
      Severity: Minor
      Found in src/Illuminate/Foundation/Application.php - About 1 hr to fix

        Function register has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
        Open

            public function register($provider, $force = false)
            {
                if (($registered = $this->getProvider($provider)) && ! $force) {
                    return $registered;
                }
        Severity: Minor
        Found in src/Illuminate/Foundation/Application.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 getNamespace has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

            public function getNamespace()
            {
                if (! is_null($this->namespace)) {
                    return $this->namespace;
                }
        Severity: Minor
        Found in src/Illuminate/Foundation/Application.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