mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-04-16 10:16:22 +02:00
15 lines
288 B
PHP
15 lines
288 B
PHP
<?php
|
|
namespace App\Entity\Interfaces;
|
|
|
|
use FOS\UserBundle\Model\UserInterface as FOSUserInterface;
|
|
use App\Entity\Attribut\Interfaces\SourceAttributInterface;
|
|
|
|
/**
|
|
*
|
|
* @author kevinfrantz
|
|
*
|
|
*/
|
|
interface UserInterface extends FOSUserInterface, SourceAttributInterface
|
|
{
|
|
|
|
} |