mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-03-13 10:32:39 +01:00
24 lines
443 B
PHP
24 lines
443 B
PHP
|
<?php
|
||
|
namespace App\Entity;
|
||
|
|
||
|
use App\Entity\Attribut\NameAttribut;
|
||
|
use Doctrine\ORM\Mapping as ORM;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @author kevinfrantz
|
||
|
* @ORM\Table(name="source_name")
|
||
|
* @ORM\Entity(repositoryClass="App\Repository\NameSourceRepository")
|
||
|
*/
|
||
|
class NameSource extends AbstractSource implements NameSourceInterface
|
||
|
{
|
||
|
use NameAttribut;
|
||
|
|
||
|
/**
|
||
|
* @ORM\Column(type="string",length=255)
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $name;
|
||
|
}
|
||
|
|