12345678910111213141516171819202122232425 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\Data\Argument;
- /**
- * Interface that encapsulates complexity of expression computation
- *
- * @api
- * @since 100.0.2
- */
- interface InterpreterInterface
- {
- /**
- * Compute and return effective value of an argument
- *
- * @param array $data
- * @return mixed
- * @throws \InvalidArgumentException
- * @throws \UnexpectedValueException
- */
- public function evaluate(array $data);
- }
|