Optimized draft for MemberRelation

This commit is contained in:
Kevin Frantz
2018-11-26 21:41:06 +01:00
parent ce8f53780a
commit b23f507da8
16 changed files with 296 additions and 46 deletions

View File

@@ -3,7 +3,7 @@
namespace App\Entity\Attribut;
use Doctrine\Common\Collections\Collection;
use App\Entity\Source\SourceInterface;
use App\Entity\Meta\Relation\Member\MemberRelationInterface;
/**
* @author kevinfrantz
@@ -11,12 +11,12 @@ use App\Entity\Source\SourceInterface;
interface MembersAttributInterface
{
/**
* @param Collection|SourceInterface[] $members
* @param Collection|MemberRelationInterface[] $members
*/
public function setMembers(Collection $members): void;
/**
* @return Collection|SourceInterface[]
* @return Collection|MemberRelationInterface[]
*/
public function getMembers(): Collection;
}