mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-03-14 19:05:18 +01:00
17 lines
446 B
PHP
17 lines
446 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Entity\Source\Data;
|
||
|
|
||
|
class PesonIdentitySource extends AbstractDataSource implements PersonIdentitySourceInterface
|
||
|
{
|
||
|
/**
|
||
|
* @Assert\Type(type="App\Entity\Source\NameSource")
|
||
|
* @Assert\Valid()
|
||
|
* @ORM\OneToOne(targetEntity="NameSource",cascade={"persist", "remove"})
|
||
|
* @ORM\JoinColumn(name="name_id", referencedColumnName="id")
|
||
|
*
|
||
|
* @var NameSourceInterface
|
||
|
*/
|
||
|
protected $nameSource;
|
||
|
}
|