| 1 | <?php |
||
| 27 | class CountryTranslation extends AbstractPersonalTranslation |
||
| 28 | { |
||
| 29 | /** |
||
| 30 | * @ORM\ManyToOne(targetEntity="Country", inversedBy="translations") |
||
| 31 | * @ORM\JoinColumn(name="object_id", referencedColumnName="id", onDelete="CASCADE") |
||
| 32 | * |
||
| 33 | * @var Country |
||
| 34 | */ |
||
| 35 | protected $object; |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @param string $locale |
||
| 39 | * @param string $field |
||
| 40 | * @param string $value |
||
| 41 | */ |
||
| 42 | 1 | public function __construct($locale, $field, $value) |
|
| 48 | } |
||
| 49 |