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