mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-08-21 19:25:03 +02:00
12 lines
316 B
PHP
12 lines
316 B
PHP
<?php
|
|
|
|
namespace App\Entity\Meta\Relation\Parent;
|
|
|
|
use App\Entity\Attribut\ParentsAttributInterface;
|
|
use App\Entity\Attribut\ChildsAttributeInterface;
|
|
use App\Entity\Meta\Relation\RelationInterface;
|
|
|
|
interface ParentRelationInterface extends RelationInterface, ParentsAttributInterface, ChildsAttributeInterface
|
|
{
|
|
}
|