mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 22:37:28 +01:00
23 lines
458 B
PHP
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;
|
|
}
|