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

16 lines
258 B
PHP
Raw Normal View History

2018-09-13 14:39:03 +02:00
<?php
2018-09-13 16:51:58 +02:00
2018-09-24 18:41:26 +02:00
namespace App\Entity\Attribut\Interfaces;
2018-09-13 14:39:03 +02:00
2018-10-03 15:50:46 +02:00
use App\Entity\RightInterface;
2018-09-13 15:55:48 +02:00
2018-09-13 14:39:03 +02:00
/**
* @author kevinfrantz
*/
interface RightAttributInterface
{
2018-09-13 16:51:58 +02:00
public function setRight(RightInterface $right): void;
2018-09-13 14:39:03 +02:00
2018-09-13 16:51:58 +02:00
public function getRight(): RightInterface;
}