mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-26 21:44:02 +01:00
16 lines
282 B
PHP
16 lines
282 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Entity\Attribut;
|
||
|
|
||
|
use App\Entity\NameSourceInterface;
|
||
|
|
||
|
/**
|
||
|
* @author kevinfrantz
|
||
|
*/
|
||
|
interface NameSourceAttributInterface
|
||
|
{
|
||
|
public function setNameSource(NameSourceInterface $nameSource): void;
|
||
|
|
||
|
public function getNameSource(): NameSourceInterface;
|
||
|
}
|