infinito/application/src/Entity/Attribut/RightsAttributInterface.php
2018-10-03 16:14:15 +02:00

16 lines
256 B
PHP

<?php
namespace App\Entity\Attribut;
use Doctrine\Common\Collections\Collection;
/**
* @author kevinfrantz
*/
interface RightsAttributInterface
{
public function setRights(Collection $rights): void;
public function getRights(): Collection;
}