laravel/framework

View on GitHub
src/Illuminate/Database/Console/ShowModelCommand.php

Summary

Maintainability
C
1 day
Test Coverage

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

<?php

namespace Illuminate\Database\Console;

use BackedEnum;
Severity: Minor
Found in src/Illuminate/Database/Console/ShowModelCommand.php - About 3 hrs to fix

    Method displayCli has 52 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        protected function displayCli($class, $database, $table, $policy, $attributes, $relations, $observers)
        {
            $this->newLine();
    
            $this->components->twoColumnDetail('<fg=green;options=bold>'.$class.'</>');
    Severity: Major
    Found in src/Illuminate/Database/Console/ShowModelCommand.php - About 2 hrs to fix

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

          protected function getRelations($model)
          {
              return collect(get_class_methods($model))
                  ->map(fn ($method) => new ReflectionMethod($model, $method))
                  ->reject(
      Severity: Minor
      Found in src/Illuminate/Database/Console/ShowModelCommand.php - About 1 hr to fix

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

            protected function getVirtualAttributes($model, $columns)
            {
                $class = new ReflectionClass($model);
        
                return collect($class->getMethods())
        Severity: Minor
        Found in src/Illuminate/Database/Console/ShowModelCommand.php - About 1 hr to fix

          Method displayCli has 7 arguments (exceeds 4 allowed). Consider refactoring.
          Open

              protected function displayCli($class, $database, $table, $policy, $attributes, $relations, $observers)
          Severity: Major
          Found in src/Illuminate/Database/Console/ShowModelCommand.php - About 50 mins to fix

            Method display has 7 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                protected function display($class, $database, $table, $policy, $attributes, $relations, $observers)
            Severity: Major
            Found in src/Illuminate/Database/Console/ShowModelCommand.php - About 50 mins to fix

              Method displayJson has 7 arguments (exceeds 4 allowed). Consider refactoring.
              Open

                  protected function displayJson($class, $database, $table, $policy, $attributes, $relations, $observers)
              Severity: Major
              Found in src/Illuminate/Database/Console/ShowModelCommand.php - About 50 mins to fix

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

                    protected function displayCli($class, $database, $table, $policy, $attributes, $relations, $observers)
                    {
                        $this->newLine();
                
                        $this->components->twoColumnDetail('<fg=green;options=bold>'.$class.'</>');
                Severity: Minor
                Found in src/Illuminate/Database/Console/ShowModelCommand.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