mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-05-06 18:15:22 +02:00
14 lines
279 B
PHP
14 lines
279 B
PHP
<?php
|
|
|
|
namespace App\Entity\Source;
|
|
|
|
use App\Entity\Attribut\UserAttributInterface;
|
|
use App\Entity\Attribut\NameSourceAttributInterface;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
interface UserSourceInterface extends SourceInterface, UserAttributInterface, NameSourceAttributInterface
|
|
{
|
|
}
|