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