Interpolation::__construct PHP Method

__construct() public method

When $inPhpContext is true, instead of putting the expression inde php tags () the class will render a concatenation like: . ($text) . unless the interpolation makes the whole text. In which case, it will only the markers (#{ and }) will be removed.
public __construct ( string $text, boolean $inPhpContext = false )
$text string
$inPhpContext boolean (default: false) Whether this interpolation is already inside or not
    public function __construct($text, $inPhpContext = false)
    {
        $this->_text = $text;
        $this->_phpCtx = $inPhpContext;
    }