infinito/application/symfony/src/Attribut/MembersAttributInterface.php

23 lines
458 B
PHP
Raw Normal View History

<?php
2019-01-20 10:41:58 +01:00
namespace App\Attribut;
use Doctrine\Common\Collections\Collection;
2018-11-26 21:41:06 +01:00
use App\Entity\Meta\Relation\Member\MemberRelationInterface;
/**
* @author kevinfrantz
*/
interface MembersAttributInterface
{
/**
2018-11-26 21:41:06 +01:00
* @param Collection|MemberRelationInterface[] $members
*/
public function setMembers(Collection $members): void;
/**
2018-11-26 21:41:06 +01:00
* @return Collection|MemberRelationInterface[]
*/
public function getMembers(): Collection;
}