laravel/framework

View on GitHub
src/Illuminate/Database/Eloquent/Factories/Factory.php

Summary

Maintainability
D
2 days
Test Coverage

Factory has 50 functions (exceeds 20 allowed). Consider refactoring.
Open

abstract class Factory
{
    use Conditionable, ForwardsCalls, Macroable {
        __call as macroCall;
    }
Severity: Minor
Found in src/Illuminate/Database/Eloquent/Factories/Factory.php - About 7 hrs to fix

    File Factory.php has 445 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    
    namespace Illuminate\Database\Eloquent\Factories;
    
    use Closure;
    Severity: Minor
    Found in src/Illuminate/Database/Eloquent/Factories/Factory.php - About 6 hrs to fix

      Method __call has 28 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function __call($method, $parameters)
          {
              if (static::hasMacro($method)) {
                  return $this->macroCall($method, $parameters);
              }
      Severity: Minor
      Found in src/Illuminate/Database/Eloquent/Factories/Factory.php - About 1 hr to fix

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

            public function __construct($count = null,
                                        ?Collection $states = null,
                                        ?Collection $has = null,
                                        ?Collection $for = null,
                                        ?Collection $afterMaking = null,
        Severity: Major
        Found in src/Illuminate/Database/Eloquent/Factories/Factory.php - About 1 hr to fix

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

              public function __call($method, $parameters)
              {
                  if (static::hasMacro($method)) {
                      return $this->macroCall($method, $parameters);
                  }
          Severity: Minor
          Found in src/Illuminate/Database/Eloquent/Factories/Factory.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

          Avoid too many return statements within this method.
          Open

                  return $instances;
          Severity: Major
          Found in src/Illuminate/Database/Eloquent/Factories/Factory.php - About 30 mins to fix

            There are no issues that match your filters.

            Category
            Status