Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
ArgumentInterpreter.php
Go to the documentation of this file.
1 <?php
7 
10 
15 {
19  private $constInterpreter;
20 
24  public function __construct(Constant $constInterpreter)
25  {
26  $this->constInterpreter = $constInterpreter;
27  }
28 
33  public function evaluate(array $data)
34  {
35  return ['argument' => $this->constInterpreter->evaluate($data)];
36  }
37 }