Added comments

This commit is contained in:
Kevin Frantz
2019-01-18 18:12:31 +01:00
parent 727a5c2aaf
commit 4a40f78e7d
4 changed files with 45 additions and 0 deletions

View File

@@ -4,7 +4,17 @@ namespace App\Domain\RightManagement;
use App\Entity\Source\SourceInterface;
/**
* @author kevinfrantz
*/
interface RightCheckerInterface
{
/**
* @param string $layer
* @param string $type
* @param SourceInterface $source
*
* @return bool
*/
public function isGranted(string $layer, string $type, SourceInterface $source): bool;
}