Optimized entity mapping for collections

This commit is contained in:
Kevin Frantz
2018-11-02 21:00:24 +01:00
parent b11b53884b
commit e0edc8935d
6 changed files with 33 additions and 24 deletions

View File

@@ -7,22 +7,24 @@ use App\Helper\DimensionHelper;
/**
* @author kevinfrantz
*
* @todo this attribut should be refactored to mapp fully on collections instead of members
*/
trait MembersAttribut
{
/**
* @var Collection
*/
protected $members;
protected $collection;
public function getMembers(): Collection
{
return $this->members;
return $this->collection;
}
public function setMembers(Collection $members): void
{
$this->members = $members;
$this->collection = $members;
}
/**