2019-09-06 23:53:10 +08:00

16 lines
220 B
PHP
Executable File

<?php
class LtDbSqlExpression
{
private $_expression;
public function __construct($string)
{
$this->_expression = (string) $string;
}
public function __toString()
{
return (string) $this->_expression;
}
}