Implemented Members attribut and optimized membership

This commit is contained in:
Kevin Frantz
2018-11-24 18:13:04 +01:00
parent a64541a9ad
commit cb1316a380
11 changed files with 116 additions and 28 deletions

View File

@@ -0,0 +1,22 @@
<?php
namespace App\Entity\Attribut;
use Doctrine\Common\Collections\Collection;
use App\Entity\Source\SourceInterface;
/**
* @author kevinfrantz
*/
interface MembersAttributInterface
{
/**
* @param Collection|SourceInterface[] $members
*/
public function setMembers(Collection $members): void;
/**
* @return Collection|SourceInterface[]
*/
public function getMembers(): Collection;
}