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

15 lines
290 B
PHP
Raw Normal View History

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