mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 18:01:10 -06:00
16 lines
370 B
PHP
16 lines
370 B
PHP
<?php namespace Visiosoft\AdvsModule;
|
|
|
|
use Anomaly\Streams\Platform\Database\Seeder\Seeder;
|
|
use Anomaly\Streams\Platform\Model\Options\OptionsAdvertisementEntryModel;
|
|
use Visiosoft\AdvsModule\Seed\BlockSeeder;
|
|
|
|
class AdvsModuleSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the seeder.
|
|
*/
|
|
public function run()
|
|
{
|
|
$this->call(BlockSeeder::class);
|
|
}
|
|
} |