mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 06:27:24 +01:00
24 lines
525 B
PHP
24 lines
525 B
PHP
<?php
|
|
|
|
namespace Infinito\Attribut;
|
|
|
|
use Infinito\Entity\Meta\Relation\Parent\CreatorRelationInterface;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
interface CreatorRelationAttributInterface
|
|
{
|
|
const CREATORRELATION_ATTRIBUT_NAME = 'creatorRelation';
|
|
|
|
/**
|
|
* @param CreatorRelationInterface $creatorRelation
|
|
*/
|
|
public function setCreatorRelation(CreatorRelationInterface $creatorRelation);
|
|
|
|
/**
|
|
* @return CreatorRelationInterface
|
|
*/
|
|
public function getCreatorRelation(): CreatorRelationInterface;
|
|
}
|