| Current Path : /var/www/clients/client3/web2/web/vendor/magento/framework/Data/Argument/ |
| Current File : /var/www/clients/client3/web2/web/vendor/magento/framework/Data/Argument/InterpreterInterface.php |
<?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);
}