mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-26 13:34:01 +01: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;
|
|
}
|