mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-03-13 02:22:39 +01:00
14 lines
216 B
PHP
14 lines
216 B
PHP
<?php
|
|
|
|
namespace App\Entity\Source\Data\Name;
|
|
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
* @ORM\Entity()
|
|
*/
|
|
class NicknameSource extends AbstractNameSource implements NicknameSourceInterface
|
|
{
|
|
}
|