infinito/application/src/Entity/Attribut/UserSourceAttributInterface.php

18 lines
288 B
PHP
Raw Normal View History

2018-09-13 14:39:03 +02:00
<?php
namespace Entity\Attribut;
use App\Entity\UserSourceInterface;
/**
*
* @author kevinfrantz
*
*/
interface UserSourceAttributInterface
{
public function setUserSource(UserSourceInterface $user):void;
public function getUserSource():UserSourceInterface;
}