mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-11 14:57:28 +01:00
16 lines
252 B
PHP
16 lines
252 B
PHP
<?php
|
|
|
|
namespace App\Entity\Attribut;
|
|
|
|
use App\Entity\Meta\RightInterface;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
interface RightAttributInterface
|
|
{
|
|
public function setRight(RightInterface $right): void;
|
|
|
|
public function getRight(): RightInterface;
|
|
}
|