* @copyright Since 2007 PrestaShop SA and Contributors * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) */ namespace PrestaShop\PrestaShop\Core\Grid\Action\Row\AccessibilityChecker; /** * Interface ApplicabilityCheckerInterface. */ interface AccessibilityCheckerInterface { /** * Check if record is applicable for row action. * * @param array $record * * @return bool */ public function isGranted(array $record); }