You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.2 KiB
41 lines
1.2 KiB
<?php |
|
|
|
namespace Tests\Support\Database\Seeds; |
|
|
|
use CodeIgniter\Database\Seeder; |
|
|
|
class ExampleSeeder extends Seeder |
|
{ |
|
public function run() |
|
{ |
|
$factories = [ |
|
[ |
|
'name' => 'Test Factory', |
|
'uid' => 'test001', |
|
'class' => 'Factories\Tests\NewFactory', |
|
'icon' => 'fas fa-puzzle-piece', |
|
'summary' => 'Longer sample text for testing', |
|
], |
|
[ |
|
'name' => 'Widget Factory', |
|
'uid' => 'widget', |
|
'class' => 'Factories\Tests\WidgetPlant', |
|
'icon' => 'fas fa-puzzle-piece', |
|
'summary' => 'Create widgets in your factory', |
|
], |
|
[ |
|
'name' => 'Evil Factory', |
|
'uid' => 'evil-maker', |
|
'class' => 'Factories\Evil\MyFactory', |
|
'icon' => 'fas fa-book-dead', |
|
'summary' => 'Abandon all hope, ye who enter here', |
|
], |
|
]; |
|
|
|
$builder = $this->db->table('factories'); |
|
|
|
foreach ($factories as $factory) { |
|
$builder->insert($factory); |
|
} |
|
} |
|
}
|
|
|