mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2026-04-04 14:23:48 +00:00
18 lines
397 B
PHP
18 lines
397 B
PHP
<?php
|
|
|
|
namespace Infinito\Attribut;
|
|
|
|
use Infinito\Entity\Meta\Relation\Parent\CreatorRelationInterface;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
interface CreatorRelationAttributInterface
|
|
{
|
|
const CREATORRELATION_ATTRIBUT_NAME = 'creatorRelation';
|
|
|
|
public function setCreatorRelation(CreatorRelationInterface $creatorRelation);
|
|
|
|
public function getCreatorRelation(): CreatorRelationInterface;
|
|
}
|