27 lines
406 B
PHP
Raw Normal View History

2018-10-27 14:56:26 +02:00
<?php
2018-10-29 19:01:00 +01:00
2018-10-27 14:56:26 +02:00
namespace App\Entity\Source\Attribut;
use Doctrine\Common\Collections\Collection;
/**
* @author kevinfrantz
*/
trait MembersAttribut
{
/**
* @var Collection
*/
protected $members;
public function getMembers(): Collection
{
return $this->members;
}
public function setMembers(Collection $members): void
{
$this->members = $members;
}
}