laravel/framework

View on GitHub
src/Illuminate/Console/GeneratorCommand.php

Summary

Maintainability
C
7 hrs
Test Coverage

File GeneratorCommand.php has 306 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

namespace Illuminate\Console;

use Illuminate\Console\Concerns\CreatesMatchingTest;
Severity: Minor
Found in src/Illuminate/Console/GeneratorCommand.php - About 3 hrs to fix

    GeneratorCommand has 23 functions (exceeds 20 allowed). Consider refactoring.
    Open

    abstract class GeneratorCommand extends Command implements PromptsForMissingInput
    {
        /**
         * The filesystem instance.
         *
    Severity: Minor
    Found in src/Illuminate/Console/GeneratorCommand.php - About 2 hrs to fix

      Method promptForMissingArgumentsUsing has 31 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          protected function promptForMissingArgumentsUsing()
          {
              return [
                  'name' => [
                      'What should the '.strtolower($this->type).' be named?',
      Severity: Minor
      Found in src/Illuminate/Console/GeneratorCommand.php - About 1 hr to fix

        Function handle has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

            public function handle()
            {
                // First we need to ensure that the given name is not a reserved word within the PHP
                // language and that the class name will actually be valid. If it is not valid we
                // can error now and prevent from polluting the filesystem using invalid files.
        Severity: Minor
        Found in src/Illuminate/Console/GeneratorCommand.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

        There are no issues that match your filters.

        Category
        Status