mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 14:27:28 +01:00
11 lines
295 B
PHP
11 lines
295 B
PHP
|
<?php
|
||
|
namespace App\Entity\Attribut;
|
||
|
|
||
|
use App\Entity\Meta\Relation\CreatorRelationInterface;
|
||
|
|
||
|
interface CreatorRelationAttributInterface
|
||
|
{
|
||
|
public function setCreatorRelation(CreatorRelationInterface $creatorRelation);
|
||
|
|
||
|
public function getCreatorRelation():CreatorRelationInterface;
|
||
|
}
|