mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-04-16 10:16:22 +02:00
23 lines
503 B
PHP
23 lines
503 B
PHP
<?php
|
|
|
|
namespace App\Entity\Attribut;
|
|
|
|
use Doctrine\Common\Collections\Collection;
|
|
use App\Entity\Source\Complex\Collection\TreeCollectionSourceInterface;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
interface MembershipsAttributInterface
|
|
{
|
|
/**
|
|
* @param Collection|TreeCollectionSourceInterface[] $groups
|
|
*/
|
|
public function setMemberships(Collection $memberships): void;
|
|
|
|
/**
|
|
* @return Collection|TreeCollectionSourceInterface[]
|
|
*/
|
|
public function getMemberships(): Collection;
|
|
}
|