You've already forked qlg.tsgz.moe
Init Repo
This commit is contained in:
15
extend/app_alipay/lotusphp_runtime/DB/DbSqlExpression.php
Executable file
15
extend/app_alipay/lotusphp_runtime/DB/DbSqlExpression.php
Executable file
@ -0,0 +1,15 @@
|
||||
<?php
|
||||
class LtDbSqlExpression
|
||||
{
|
||||
private $_expression;
|
||||
|
||||
public function __construct($string)
|
||||
{
|
||||
$this->_expression = (string) $string;
|
||||
}
|
||||
|
||||
public function __toString()
|
||||
{
|
||||
return (string) $this->_expression;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user