infinito/application/src/Entity/Attribut/NameSourceAttributInterface.php

16 lines
282 B
PHP
Raw Normal View History

2018-09-14 14:39:47 +02:00
<?php
namespace App\Entity\Attribut;
use App\Entity\NameSourceInterface;
/**
* @author kevinfrantz
*/
interface NameSourceAttributInterface
{
public function setNameSource(NameSourceInterface $nameSource): void;
public function getNameSource(): NameSourceInterface;
}