mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2026-01-12 01:56:55 +00:00
Optimized for SPA
This commit is contained in:
19
application/symfony/src/Entity/EntityInterface.php
Normal file
19
application/symfony/src/Entity/EntityInterface.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace App\Entity;
|
||||
|
||||
use App\Entity\Attribut\VersionAttributInterface;
|
||||
use App\Entity\Attribut\IdAttributInterface;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
*/
|
||||
interface EntityInterface extends VersionAttributInterface, IdAttributInterface
|
||||
{
|
||||
/**
|
||||
* Allows easier debuging.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function __toString(): string;
|
||||
}
|
||||
Reference in New Issue
Block a user