Your IP : 127.0.0.1
<?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);
}