* * @method Source create(array|callable $attributes = []) * @method static Source createOne(array $attributes = []) * @method static Source find(object|array|mixed $criteria) * @method static Source findOrCreate(array $attributes) * @method static Source first(string $sortedField = 'id') * @method static Source last(string $sortedField = 'id') * @method static Source random(array $attributes = []) * @method static Source randomOrCreate(array $attributes = []) * @method static SourceRepository&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 SourceFactory 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 Source::class; } /** * @see https://symfony.com/bundles/ZenstruckFoundryBundle/current/index.html#model-factories * * @todo add your default values here */ protected function defaults(): array { return [ 'name' => self::faker()->optional()->company(), 'description' => self::faker()->optional()->text(), 'baseUrl' => self::faker()->url(), 'scrappingParameters' => [], 'isActive' => self::faker()->boolean(), 'createdAt' => \DateTimeImmutable::createFromMutable(self::faker()->dateTime()), 'updatedAt' => \DateTimeImmutable::createFromMutable(self::faker()->dateTime()), ]; } /** * @see https://symfony.com/bundles/ZenstruckFoundryBundle/current/index.html#initialization */ protected function initialize(): static { return $this // ->afterInstantiate(function(Source $source): void {}) ; } }