mirror of
https://github.com/symfony/recipes.git
synced 2026-09-11 23:26:27 +03:00
16 lines
251 B
PHP
16 lines
251 B
PHP
<?php
|
|
|
|
namespace App\Story;
|
|
|
|
use Zenstruck\Foundry\Attribute\AsFixture;
|
|
use Zenstruck\Foundry\Story;
|
|
|
|
#[AsFixture(name: 'main')]
|
|
final class AppStory extends Story
|
|
{
|
|
public function build(): void
|
|
{
|
|
// SomeFactory::createOne();
|
|
}
|
|
}
|