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