for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Anomaly\DashboardModule;
use Anomaly\DashboardModule\Seeder\DashboardSeeder;
use Anomaly\DashboardModule\Seeder\WidgetSeeder;
use Anomaly\Streams\Platform\Database\Seeder\Seeder;
/**
* Class DashboardModuleSeeder
*
* @link http://pyrocms.com/
* @author PyroCMS, Inc. <[email protected]>
* @author Ryan Thompson <[email protected]>
*/
class DashboardModuleSeeder extends Seeder
{
* Run the seeder.
public function run()
$this->call(DashboardSeeder::class);
$this->call(WidgetSeeder::class);
}