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

16 lines
256 B
PHP
Raw Normal View History

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