mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 22:37:28 +01:00
16 lines
275 B
PHP
16 lines
275 B
PHP
<?php
|
|
|
|
namespace App\Attribut;
|
|
|
|
use App\Entity\Meta\Relation\RelationInterface;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
interface RelationAttributInterface
|
|
{
|
|
public function setRelation(RelationInterface $relation): void;
|
|
|
|
public function getRelation(): RelationInterface;
|
|
}
|