2020-08-12 20:03:45 +00:00
|
|
|
<?php
|
|
|
|
|
2021-06-08 09:52:11 +00:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2020-08-12 20:03:45 +00:00
|
|
|
/**
|
2021-05-19 16:35:13 +00:00
|
|
|
* Class AppSeeder Calls all required seeders for castopod to work properly
|
2020-08-12 20:03:45 +00:00
|
|
|
*
|
2022-02-19 16:06:11 +00:00
|
|
|
* @copyright 2020 Ad Aures
|
2020-08-12 20:03:45 +00:00
|
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
|
|
* @link https://castopod.org/
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Database\Seeds;
|
|
|
|
|
|
|
|
use CodeIgniter\Database\Seeder;
|
|
|
|
|
|
|
|
class AppSeeder extends Seeder
|
|
|
|
{
|
2021-05-06 14:00:48 +00:00
|
|
|
public function run(): void
|
2020-08-12 20:03:45 +00:00
|
|
|
{
|
|
|
|
$this->call('CategorySeeder');
|
|
|
|
$this->call('LanguageSeeder');
|
|
|
|
$this->call('PlatformSeeder');
|
|
|
|
}
|
|
|
|
}
|