12345678910111213141516171819202122232425 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\App\Scope;
- use Magento\Framework\Exception\LocalizedException;
- /**
- * Interface Validator for validating scope and scope code
- */
- interface ValidatorInterface
- {
- /**
- * Validate if exists given scope and scope code
- * otherwise, throws an exception with appropriate message.
- *
- * @param string $scope
- * @param string $scopeCode
- * @return boolean
- * @throws LocalizedException
- */
- public function isValid($scope, $scopeCode = null);
- }
|