16 lines
220 B
PHP
Executable File
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;
|
|
}
|
|
}
|