mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-03-14 19:05:18 +01:00
31 lines
428 B
PHP
31 lines
428 B
PHP
|
<?php
|
||
|
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;
|
||
|
}
|
||
|
}
|
||
|
|