Optimized law draft

This commit is contained in:
Kevin Frantz
2018-09-13 15:55:48 +02:00
parent 5f011f632b
commit b9f483bf7f
13 changed files with 206 additions and 12 deletions

View File

@@ -1,6 +1,8 @@
<?php
namespace Entity\Attribut;
use App\Entity\RightInterface;
/**
*
* @author kevinfrantz
@@ -8,8 +10,8 @@ namespace Entity\Attribut;
*/
interface RightAttributInterface
{
public function setRight(string $right):void;
public function setRight(RightInterface $right):void;
public function getRight():string;
public function getRight():RightInterface;
}