| Total Complexity | 5 |
| Total Lines | 43 |
| Duplicated Lines | 0 % |
| Coverage | 94.12% |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class SeedCommand extends \Illuminate\Database\Console\Seeds\SeedCommand |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * The service that registers all module entities. |
||
| 13 | * |
||
| 14 | * @var BootstrapRegistrarService |
||
| 15 | */ |
||
| 16 | protected $service; |
||
| 17 | |||
| 18 | 17 | public function __construct(Resolver $resolver, BootstrapRegistrarService $service) |
|
| 22 | 17 | } |
|
| 23 | |||
| 24 | /** |
||
| 25 | * Execute the console command. |
||
| 26 | * |
||
| 27 | * @return void |
||
| 28 | */ |
||
| 29 | 17 | public function handle() |
|
| 45 | 17 | } |
|
| 46 | |||
| 47 | 17 | protected function getSeeders(): array |
|
| 54 |