This commit is contained in:
2022-01-16 22:48:42 +01:00
parent 1ead7f5741
commit c801608fe8
3 changed files with 21 additions and 15 deletions

View File

@@ -1,4 +1,4 @@
<?php
<?php declare(strict_types = 1);
namespace App\Model\Database\Entity;
@@ -42,13 +42,13 @@ class Language extends AbstractEntity
/*
* @var Collection&iterable<Dictionary>
* @ORM\OneToMany(targetEntity="Dictionary", mappedBy="language")
* @ORM\OneToMany(targetEntity="\App\Model\Database\Entity\Dictionary", mappedBy="language")
*/
protected Collection $dictionaries1;
/*
* @var Collection&iterable<Dictionary>
* @ORM\OneToMany(targetEntity="Dictionary", mappedBy="language")
* @ORM\OneToMany(targetEntity="\App\Model\Database\Entity\Dictionary", mappedBy="language")
*/
protected Collection $dictionaries2;