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