mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-29 21:08:13 +02: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;
|
|
}
|
|
|