mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 18:01:10 -06:00
21 lines
632 B
PHP
21 lines
632 B
PHP
<?php namespace Visiosoft\ProfileModule;
|
|
|
|
use Anomaly\Streams\Platform\Database\Seeder\Seeder;
|
|
use Visiosoft\ProfileModule\Education\EducationSeeder;
|
|
use Visiosoft\ProfileModule\Notifications\ProfileModuleNotificationsTemplateSeeder;
|
|
use Visiosoft\ProfileModule\Seed\UsersFieldsSeeder;
|
|
|
|
class ProfileModuleSeeder extends Seeder
|
|
{
|
|
public function run()
|
|
{
|
|
//Notifications Template Seeder
|
|
$this->call(ProfileModuleNotificationsTemplateSeeder::class);
|
|
|
|
// Users Fields Seeder
|
|
$this->call(UsersFieldsSeeder::class);
|
|
|
|
//Educations Seeder
|
|
$this->call(EducationSeeder::class);
|
|
}
|
|
} |