mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-04-16 02:06:23 +02:00
15 lines
267 B
PHP
15 lines
267 B
PHP
<?php
|
|
|
|
namespace App\Entity\Source\Data\Name;
|
|
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
* @ORM\Table(name="source_data_name_surname")
|
|
* @ORM\Entity()
|
|
*/
|
|
final class SurnameSource extends AbstractNameSource implements SurnameSourceInterface
|
|
{
|
|
}
|