mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2026-04-05 06:42:20 +00:00
16 lines
255 B
PHP
16 lines
255 B
PHP
<?php
|
|
|
|
namespace Infinito\Attribut;
|
|
|
|
use Infinito\Entity\Meta\RightInterface;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
interface RightAttributInterface
|
|
{
|
|
public function setRight(RightInterface $right): void;
|
|
|
|
public function getRight(): RightInterface;
|
|
}
|