infinito/application/src/Entity/NameSource.php

24 lines
443 B
PHP
Raw Normal View History

2018-09-14 14:12:43 +02:00
<?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;
}