mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-02-12 14:04:21 +01:00
16 lines
283 B
PHP
16 lines
283 B
PHP
<?php
|
|
|
|
namespace App\Entity\Attribut;
|
|
|
|
use App\Entity\Source\UserSourceInterface;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
interface UserSourceAttributInterface
|
|
{
|
|
public function setUserSource(UserSourceInterface $user): void;
|
|
|
|
public function getUserSource(): UserSourceInterface;
|
|
}
|