mirror of
https://github.com/openclassify/openclassify.git
synced 2026-04-21 22:37:36 -05:00
26 lines
535 B
PHP
26 lines
535 B
PHP
<?php namespace Anomaly\PagesModule;
|
|
|
|
use Anomaly\PagesModule\Page\PageSeeder;
|
|
use Anomaly\PagesModule\Type\TypeSeeder;
|
|
use Anomaly\Streams\Platform\Database\Seeder\Seeder;
|
|
|
|
/**
|
|
* Class PagesModuleSeeder
|
|
*
|
|
* @link http://pyrocms.com/
|
|
* @author PyroCMS, Inc. <support@pyrocms.com>
|
|
* @author Ryan Thompson <ryan@pyrocms.com>
|
|
*/
|
|
class PagesModuleSeeder extends Seeder
|
|
{
|
|
|
|
/**
|
|
* Run the seeder.
|
|
*/
|
|
public function run()
|
|
{
|
|
$this->call(TypeSeeder::class);
|
|
$this->call(PageSeeder::class);
|
|
}
|
|
}
|