mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-11 14:57:28 +01:00
16 lines
297 B
PHP
16 lines
297 B
PHP
<?php
|
|
|
|
namespace App\Attribut;
|
|
|
|
use App\Entity\Source\Primitive\Name\NameSourceInterface;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
interface NameSourceAttributInterface
|
|
{
|
|
public function setNameSource(NameSourceInterface $nameSource): void;
|
|
|
|
public function getNameSource(): NameSourceInterface;
|
|
}
|