Storm\Core\Relational\Expressions\ConstantExpression::GetValue PHP Метод

GetValue() публичный Метод

public GetValue ( ) : mixed
Результат mixed
    public function GetValue()
    {
        return $this->Value;
    }

Usage Example

Пример #1
0
 protected function AppendConstant(QueryBuilder $QueryBuilder, CoreE\ConstantExpression $Expression)
 {
     $QueryBuilder->AppendSingleValue($Expression->GetValue());
 }
ConstantExpression