mirror of
https://gh.wpcy.net/https://github.com/aspirepress/AspireCloud.git
synced 2026-06-01 00:19:09 +08:00
16 lines
309 B
PHP
16 lines
309 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
public function run(): void
|
|
{
|
|
$this->call(AuthorizationSeeder::class);
|
|
$this->call(UserSeeder::class);
|
|
$this->call(PluginSeeder::class);
|
|
}
|
|
}
|