Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Expr.php
Go to the documentation of this file.
1 <?php
50 {
56  protected $_expression;
57 
64  public function __construct($expression)
65  {
66  $this->_expression = (string) $expression;
67  }
68 
72  public function __toString()
73  {
74  return $this->_expression;
75  }
76 
77 }
__construct($expression)
Definition: Expr.php:64
__toString()
Definition: Expr.php:72
$_expression
Definition: Expr.php:56