This commit is contained in:
Yuri Kuznetsov
2023-02-17 15:46:44 +02:00
parent 75749efacb
commit 702b3f4e2b
33 changed files with 268 additions and 522 deletions
@@ -40,15 +40,8 @@ class FieldHelper
{
private ?Entity $seed = null;
private string $entityType;
private EntityManager $entityManager;
public function __construct(string $entityType, EntityManager $entityManager)
{
$this->entityType = $entityType;
$this->entityManager = $entityManager;
}
public function __construct(private string $entityType, private EntityManager $entityManager)
{}
private function getSeed(): Entity
{