Merge branch 'develop' into db-search-operator

This commit is contained in:
Min-Soo Kim 2020-12-27 21:24:02 +09:00 committed by GitHub
commit f8ed3b49f2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
22 changed files with 132 additions and 81 deletions

View file

@ -294,6 +294,11 @@ class VariableBase
{
list($is_expression, $value) = $this->getDefaultValue();
}
else
{
$is_expression = null;
$value = null;
}
return [$is_expression, $value];
}