DcatSeeder::run PHP Метод

run() публичный Метод

Run the database seeds.
public run ( ) : void
Результат void
    public function run()
    {
        Eloquent::unguard();
        // Seed the licenses
        $this->seedLicenses();
        // Seed the languages
        $this->seedLanguages();
        // Seed the themes
        $this->seedThemes();
        // Seed the geoprojections
        $this->seedGeoProjections();
    }