Sorry, data for that comparison is no longer available.

laravel/framework

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

Summary

Maintainability
D
1 day
Test Coverage

File ShowModelCommand.php has 332 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 4 hrs to fix

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

        protected function displayCli($class, $database, $table, $policy, $attributes, $relations, $events, $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 36 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

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

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

        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 8 arguments (exceeds 4 allowed). Consider refactoring.
          Open

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

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

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

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

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

                There are no issues that match your filters.

                Category
                Status