mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-31 07:38:29 +01:00
14 lines
241 B
PHP
14 lines
241 B
PHP
<?php
|
|
|
|
namespace App\Entity;
|
|
|
|
use App\Entity\Attribut\VersionAttributInterface;
|
|
use App\Entity\Attribut\IdAttributInterface;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
interface EntityInterface extends VersionAttributInterface, IdAttributInterface
|
|
{
|
|
}
|