HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/bomacon/bomacon.nl/vendor/komma/kms/src/Console/Commands/CoreSeed.php
<?php

namespace Komma\KMS\Console\Commands;

use Illuminate\Console\Command;
use Illuminate\Support\Facades\Artisan;
use Komma\KMS\Database\Seeds\DatabaseSeeder;

class CoreSeed extends Command
{
    /**
     * The name and signature of the console command.
     *
     * @var string
     */
    protected $signature = 'kms:seed';

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'Seed kms-core tables';

    /**
     * Create a new command instance.
     *
     * @return void
     */
    public function __construct()
    {
        parent::__construct();
    }

    /**
     * Execute the console command.
     *
     * @return mixed
     */
    public function handle()
    {
        Artisan::call('db:seed --class="Komma\\\KMS\\\Database\\\Seeds\\\DatabaseSeeder"', [], $this->output);
    }
}