mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-25 13:12:22 +01:00
16 lines
262 B
PHP
16 lines
262 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Entity\Attribut\Interfaces;
|
||
|
|
||
|
use App\Entity\Interfaces\UserInterface;
|
||
|
|
||
|
/**
|
||
|
* @author kevinfrantz
|
||
|
*/
|
||
|
interface UserAttributInterface
|
||
|
{
|
||
|
public function setUser(UserInterface $user): void;
|
||
|
|
||
|
public function getUser(): UserInterface;
|
||
|
}
|