Total Complexity | 5 |
Total Lines | 43 |
Duplicated Lines | 0 % |
Coverage | 23.53% |
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 | 1 | public function __construct(Resolver $resolver, BootstrapRegistrarService $service) |
|
19 | { |
||
20 | 1 | parent::__construct($resolver); |
|
21 | 1 | $this->service = $service; |
|
22 | 1 | } |
|
23 | |||
24 | /** |
||
25 | * Execute the console command. |
||
26 | * |
||
27 | * @return void |
||
28 | */ |
||
29 | public function handle() |
||
45 | } |
||
46 | |||
47 | protected function getSeeders(): array |
||
54 |