In between commit implementing reciever

This commit is contained in:
Kevin Frantz
2018-10-31 17:19:10 +01:00
parent bb01080b34
commit e7f82c4835
8 changed files with 77 additions and 40 deletions

View File

@@ -0,0 +1,28 @@
<?php
namespace App\Entity\Attribut;
use Doctrine\Common\Collections\Collection;
/**
* Allows to group other sources in a source.
*
* @author kevinfrantz
*/
interface MembersAttributInterface
{
/**
* @param Collection $members
*/
public function setMembers(Collection $members): void;
/**
* @return Collection
*/
public function getMembers(): Collection;
/**
* @return Collection
*/
public function getMembersInclusiveChildren(int $dimension = null): Collection;
}