mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-04-16 10:16:22 +02:00
14 lines
206 B
PHP
14 lines
206 B
PHP
<?php
|
|
|
|
namespace App\Entity\Attribut\Interfaces;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
interface GrantAttributInterface
|
|
{
|
|
public function setGrant(bool $grant): void;
|
|
|
|
public function getGrant(): bool;
|
|
}
|