mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-29 16:15:04 +00:00
15 lines
218 B
PHP
15 lines
218 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Story;
|
||
|
|
|
||
|
|
use App\Factory\UserFactory;
|
||
|
|
use Zenstruck\Foundry\Story;
|
||
|
|
|
||
|
|
final class DefaultUsersStory extends Story
|
||
|
|
{
|
||
|
|
public function build(): void
|
||
|
|
{
|
||
|
|
UserFactory::createMany(3);
|
||
|
|
}
|
||
|
|
}
|