infinito/application/src/Entity/Attribut/UserSourceAttributInterface.php
2018-09-13 16:51:58 +02:00

16 lines
272 B
PHP

<?php
namespace Entity\Attribut;
use App\Entity\UserSourceInterface;
/**
* @author kevinfrantz
*/
interface UserSourceAttributInterface
{
public function setUserSource(UserSourceInterface $user): void;
public function getUserSource(): UserSourceInterface;
}