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

16 lines
272 B
PHP
Raw Normal View History

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