* * @method Page create(array|callable $attributes = []) * @method static Page createOne(array $attributes = []) * @method static Page find(object|array|mixed $criteria) * @method static Page findOrCreate(array $attributes) * @method static Page first(string $sortedField = 'id') * @method static Page last(string $sortedField = 'id') * @method static Page random(array $attributes = []) * @method static Page randomOrCreate(array $attributes = []) * @method static PageRepository&RepositoryDecorator repository() * @method static list all() * @method static list createMany(int $number, array|callable $attributes = []) * @method static list createSequence(iterable|callable $sequence) * @method static list findBy(array $attributes) * @method static list randomRange(int $min, int $max, array $attributes = []) * @method static list randomSet(int $number, array $attributes = []) */ final class PageFactory extends PersistentObjectFactory { /** * @see https://symfony.com/bundles/ZenstruckFoundryBundle/current/index.html#factories-as-services * * @todo inject services if required */ public function __construct() { parent::__construct(); } public static function class(): string { return Page::class; } /** * @see https://symfony.com/bundles/ZenstruckFoundryBundle/current/index.html#model-factories * * @todo add your default values here */ protected function defaults(): array { return [ 'chapter' => ChapterFactory::new(), 'imageLocalUrl' => 'https://placehold.co/770x1090', 'imageUrl' => 'https://placehold.co/770x1090', 'number' => self::faker()->randomNumber(2), ]; } /** * @see https://symfony.com/bundles/ZenstruckFoundryBundle/current/index.html#initialization */ protected function initialize(): static { return $this // ->afterInstantiate(function(Page $page): void {}) ; } }