Fix Object::getObjectVars()

This commit is contained in:
Kijin Sung 2020-05-21 21:00:01 +09:00
parent 4f1264dee5
commit a5f7d25b32

View file

@ -288,7 +288,7 @@ class BaseObject
*/ */
public function getObjectVars() public function getObjectVars()
{ {
return get_object_vars($this->variables); return (object)($this->variables);
} }
/** /**