infinito/application/symfony/src/Attribut/UserAttributInterface.php

16 lines
233 B
PHP
Raw Normal View History

2018-09-24 18:41:26 +02:00
<?php
2019-01-20 10:41:58 +01:00
namespace App\Attribut;
2018-09-24 18:41:26 +02:00
2018-10-03 15:50:46 +02:00
use App\Entity\UserInterface;
2018-09-24 18:41:26 +02:00
/**
* @author kevinfrantz
*/
interface UserAttributInterface
{
public function setUser(UserInterface $user): void;
public function getUser(): UserInterface;
}