mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-11 06:47:31 +01:00
18 lines
288 B
PHP
18 lines
288 B
PHP
|
<?php
|
||
|
namespace Entity\Attribut;
|
||
|
|
||
|
use App\Entity\UserSourceInterface;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @author kevinfrantz
|
||
|
*
|
||
|
*/
|
||
|
interface UserSourceAttributInterface
|
||
|
{
|
||
|
public function setUserSource(UserSourceInterface $user):void;
|
||
|
|
||
|
public function getUserSource():UserSourceInterface;
|
||
|
}
|
||
|
|