infinito/application/src/Entity/Source/Combination/FullPersonNameSource.php

27 lines
726 B
PHP
Raw Normal View History

2018-11-10 13:09:18 +01:00
<?php
namespace App\Entity\Source\Combination;
use App\Entity\Attribut\FirstNameSourceAttribut;
use App\Entity\Attribut\SurnameSourceAttribut;
use App\Entity\Source\Data\Name\SurnameSource;
use App\Entity\Source\Data\Name\FirstNameSource;
use Doctrine\ORM\Mapping as ORM;
/**
* @author kevinfrantz
* @ORM\Table(name="source_combination_fullpersonname")
* @ORM\Entity()
*/
2018-11-10 13:09:18 +01:00
class FullPersonNameSource extends AbstractCombinationSource implements FullPersonNameSourceInterface
{
use FirstNameSourceAttribut,SurnameSourceAttribut;
public function __construct()
{
parent::__construct();
$this->surnameSource = new SurnameSource();
$this->firstNameSource = new FirstNameSource();
}
2018-11-10 13:09:18 +01:00
}