mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 18:01:10 -06:00
16 lines
446 B
PHP
16 lines
446 B
PHP
<?php namespace Visiosoft\AdvsModule;
|
|
|
|
use Anomaly\Streams\Platform\Database\Seeder\Seeder;
|
|
use Visiosoft\AdvsModule\Notifications\AdvsModuleNotificationsTemplateSeeder;
|
|
use Visiosoft\AdvsModule\Status\StatusSeeder;
|
|
|
|
class AdvsModuleSeeder extends Seeder
|
|
{
|
|
public function run()
|
|
{
|
|
//Notifications Template Seeder
|
|
$this->call(AdvsModuleNotificationsTemplateSeeder::class);
|
|
|
|
$this->call(StatusSeeder::class);
|
|
}
|
|
} |