mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-02-13 06:24:21 +01:00
18 lines
270 B
PHP
18 lines
270 B
PHP
|
<?php
|
||
|
namespace App\Entity\attribut;
|
||
|
|
||
|
use App\Entity\SourceInterface;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @author kevinfrantz
|
||
|
*
|
||
|
*/
|
||
|
interface SourceAttributInterface
|
||
|
{
|
||
|
public function getSource():SourceInterface;
|
||
|
|
||
|
public function setSource(SourceInterface $source):void;
|
||
|
}
|
||
|
|