mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-11 22:59:32 +01:00
18 lines
283 B
PHP
18 lines
283 B
PHP
<?php
|
|
namespace Entity\Attribut;
|
|
|
|
use Doctrine\Common\Collections\ArrayCollection;
|
|
|
|
/**
|
|
*
|
|
* @author kevinfrantz
|
|
*
|
|
*/
|
|
interface RightsAttributInterface
|
|
{
|
|
public function setRights(ArrayCollection $rights):void;
|
|
|
|
public function getRights():ArrayCollection;
|
|
}
|
|
|