mirror of
https://github.com/rico-vz/HeimerdingerLoL.git
synced 2025-12-07 10:40:48 +01:00
19 lines
362 B
PHP
19 lines
362 B
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
// use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Seed the application's database.
|
|
*/
|
|
public function run(): void
|
|
{
|
|
$this->call(ChampionSeeder::class);
|
|
$this->call(ChampionSkinSeeder::class);
|
|
}
|
|
}
|