12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\App\Arguments;
- use Magento\Framework\Data\Argument\Interpreter\Constant;
- use Magento\Framework\Data\Argument\InterpreterInterface;
- /**
- * Interpreter that returns value of an application argument, retrieving its name from a constant
- */
- class ArgumentInterpreter implements InterpreterInterface
- {
- /**
- * @var Constant
- */
- private $constInterpreter;
- /**
- * @param Constant $constInterpreter
- */
- public function __construct(Constant $constInterpreter)
- {
- $this->constInterpreter = $constInterpreter;
- }
- /**
- * {@inheritdoc}
- * @return mixed
- */
- public function evaluate(array $data)
- {
- return ['argument' => $this->constInterpreter->evaluate($data)];
- }
- }
|