mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-04-22 04:32:24 +02:00
25 lines
348 B
PHP
25 lines
348 B
PHP
<?php
|
|
|
|
namespace Infinito\Attribut;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
interface GrantAttributInterface
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
const GRANT_ATTRIBUT_NAME = 'grant';
|
|
|
|
/**
|
|
* @param bool $grant
|
|
*/
|
|
public function setGrant(bool $grant): void;
|
|
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function getGrant(): bool;
|
|
}
|