infinito/application/src/Entity/Attribut/RightsAttributInterface.php

18 lines
283 B
PHP
Raw Normal View History

2018-09-13 15:55:48 +02:00
<?php
namespace Entity\Attribut;
use Doctrine\Common\Collections\ArrayCollection;
/**
*
* @author kevinfrantz
*
*/
interface RightsAttributInterface
{
public function setRights(ArrayCollection $rights):void;
public function getRights():ArrayCollection;
}