mirror of
https://github.com/openclassify/openclassify.git
synced 2026-04-14 11:12:09 -05:00
16 lines
274 B
PHP
16 lines
274 B
PHP
<?php
|
|
|
|
namespace Modules\Demo\Database\Seeders;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class DemoContentSeeder extends Seeder
|
|
{
|
|
public function run(): void
|
|
{
|
|
$this->call([
|
|
\Modules\User\Database\Seeders\UserWorkspaceSeeder::class,
|
|
]);
|
|
}
|
|
}
|