infinito/application/symfony/src/Attribut/MembersAttributInterface.php
2019-01-20 10:41:58 +01:00

23 lines
458 B
PHP

<?php
namespace App\Attribut;
use Doctrine\Common\Collections\Collection;
use App\Entity\Meta\Relation\Member\MemberRelationInterface;
/**
* @author kevinfrantz
*/
interface MembersAttributInterface
{
/**
* @param Collection|MemberRelationInterface[] $members
*/
public function setMembers(Collection $members): void;
/**
* @return Collection|MemberRelationInterface[]
*/
public function getMembers(): Collection;
}