* * @method PrivateCommentEmbeddable|Proxy create(array|callable $attributes = []) * @method static PrivateCommentEmbeddable|Proxy createOne(array $attributes = []) * @method static PrivateCommentEmbeddable[]|Proxy[] createMany(int $number, array|callable $attributes = []) * @method static PrivateCommentEmbeddable[]|Proxy[] createSequence(iterable|callable $sequence) * * @phpstan-method Proxy create(array|callable $attributes = []) * @phpstan-method static Proxy createOne(array $attributes = []) */ final class PrivateCommentEmbeddableFactory extends ModelFactory { /** * @see https://symfony.com/bundles/ZenstruckFoundryBundle/current/index.html#factories-as-services * * @todo inject services if required */ public function __construct() { parent::__construct(); } /** * @see https://symfony.com/bundles/ZenstruckFoundryBundle/current/index.html#model-factories * * @todo add your default values here */ protected function getDefaults(): array { return [ ]; } /** * @see https://symfony.com/bundles/ZenstruckFoundryBundle/current/index.html#initialization */ protected function initialize(): self { return $this ->withoutPersisting() // ->afterInstantiate(function(PrivateCommentEmbeddable $privateCommentEmbeddable): void {}) ; } protected static function getClass(): string { return PrivateCommentEmbeddable::class; } }