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