* * @phpstan-method NetworkOrganization|Proxy create(array|callable $attributes = []) * @phpstan-method static NetworkOrganization|Proxy createOne(array $attributes = []) * @phpstan-method static NetworkOrganization|Proxy find(object|array|mixed $criteria) * @phpstan-method static NetworkOrganization|Proxy findOrCreate(array $attributes) * @phpstan-method static NetworkOrganization|Proxy first(string $sortedField = 'id') * @phpstan-method static NetworkOrganization|Proxy last(string $sortedField = 'id') * @phpstan-method static NetworkOrganization|Proxy random(array $attributes = []) * @phpstan-method static NetworkOrganization|Proxy randomOrCreate(array $attributes = [])) * @phpstan-method static NetworkOrganizationRepository|RepositoryProxy repository() * @phpstan-method static NetworkOrganization[]|Proxy[] all() * @phpstan-method static NetworkOrganization[]|Proxy[] createMany(int $number, array|callable $attributes = []) * @phpstan-method static NetworkOrganization[]&Proxy[] createSequence(iterable|callable $sequence) * @phpstan-method static NetworkOrganization[]|Proxy[] findBy(array $attributes) * @phpstan-method static NetworkOrganization[]|Proxy[] randomRange(int $min, int $max, array $attributes = [])) * @phpstan-method static NetworkOrganization[]|Proxy[] randomSet(int $number, array $attributes = [])) */ class NetworkOrganizationFactory extends ModelFactory { /** * @see https://github.com/zenstruck/foundry#factories-as-services */ public function __construct() { parent::__construct(); } /** * @see https://github.com/zenstruck/foundry#model-factories * * @todo add your default values here */ protected function getDefaults(): array { return []; } /** * @see https://github.com/zenstruck/foundry#initialization */ protected function initialize(): self { return $this // ->afterInstantiate(function(Post $post) {}) ; } protected static function getClass(): string { return NetworkOrganization::class; } }