Implemented correct interface

This commit is contained in:
Kevin Frantz 2018-11-10 16:21:18 +01:00
parent de51749fea
commit a06422a1c4

View File

@ -3,7 +3,7 @@
namespace App\Entity\Attribut; namespace App\Entity\Attribut;
use Doctrine\Common\Collections\Collection; use Doctrine\Common\Collections\Collection;
use App\Entity\Source\Collection\MemberCollectionSourceInterface; use App\Entity\Source\Collection\TreeCollectionSourceInterface;
/** /**
* @author kevinfrantz * @author kevinfrantz
@ -11,12 +11,12 @@ use App\Entity\Source\Collection\MemberCollectionSourceInterface;
interface MembershipsAttributInterface interface MembershipsAttributInterface
{ {
/** /**
* @param Collection|MemberCollectionSourceInterface[] $groups * @param Collection|TreeCollectionSourceInterface[] $groups
*/ */
public function setMemberships(Collection $memberships): void; public function setMemberships(Collection $memberships): void;
/** /**
* @return Collection|MemberCollectionSourceInterface[] * @return Collection|TreeCollectionSourceInterface[]
*/ */
public function getMemberships(): Collection; public function getMemberships(): Collection;
} }