mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-11 14:57:28 +01:00
23 lines
410 B
PHP
23 lines
410 B
PHP
<?php
|
|
|
|
namespace App\Attribut;
|
|
|
|
use Doctrine\Common\Collections\Collection;
|
|
use App\Entity\Meta\RightInterface;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
interface RightsAttributInterface
|
|
{
|
|
/**
|
|
* @param Collection|RightInterface[] $rights
|
|
*/
|
|
public function setRights(Collection $rights): void;
|
|
|
|
/**
|
|
* @return Collection|RightInterface[]
|
|
*/
|
|
public function getRights(): Collection;
|
|
}
|