Merge pull request #7 from misol/IS_escape_fix

Is escape fix
This commit is contained in:
Min-Soo Kim 2020-12-23 22:29:18 +09:00 committed by GitHub
commit 8a47e7e044
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 19 additions and 11 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];
}