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