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
52 {
58  protected $_expression;
59 
66  public function __construct($expression)
67  {
68  $this->_expression = (string) $expression;
69  }
70 
76  public function __toString()
77  {
78  return $this->_expression;
79  }
80 }
__construct($expression)
Definition: Expr.php:66
__toString()
Definition: Expr.php:76