Files
Chamilo/vendor/symfony/security-acl/Permission/MaskBuilderRetrievalInterface.php
2025-08-14 22:41:49 +02:00

26 lines
547 B
PHP

<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Security\Acl\Permission;
/**
* Retrieves the MaskBuilder.
*/
interface MaskBuilderRetrievalInterface
{
/**
* Returns a new instance of the MaskBuilder used in the permissionMap.
*
* @return MaskBuilderInterface
*/
public function getMaskBuilder();
}