infinito/application/symfony/src/Entity/EntityInterface.php

14 lines
242 B
PHP
Raw Normal View History

2018-10-03 18:55:33 +02:00
<?php
2018-10-29 19:01:00 +01:00
namespace Infinito\Entity;
2018-10-03 18:55:33 +02:00
use Infinito\Attribut\VersionAttributInterface;
use Infinito\Attribut\IdAttributInterface;
2018-10-25 20:42:52 +02:00
2018-10-03 18:55:33 +02:00
/**
* @author kevinfrantz
*/
interface EntityInterface extends VersionAttributInterface, IdAttributInterface
2018-10-03 18:55:33 +02:00
{
}