2018-09-14 13:33:56 +02:00
|
|
|
<?php
|
|
|
|
|
2019-02-17 14:33:19 +01:00
|
|
|
namespace Infinito\Attribut;
|
2018-09-14 13:33:56 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @author kevinfrantz
|
|
|
|
*/
|
|
|
|
interface GrantAttributInterface
|
|
|
|
{
|
|
|
|
public function setGrant(bool $grant): void;
|
|
|
|
|
|
|
|
public function getGrant(): bool;
|
|
|
|
}
|