mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-03-14 10:55:17 +01:00
27 lines
406 B
PHP
27 lines
406 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;
|
|
}
|
|
}
|