mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 22:37:28 +01:00
16 lines
272 B
PHP
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;
|
|
}
|