CustomVariableDictionary: implement getValue
This commit is contained in:
parent
e912b566a2
commit
5d363374ad
|
@ -47,6 +47,11 @@ class CustomVariableDictionary extends CustomVariable implements Countable
|
|||
return $this;
|
||||
}
|
||||
|
||||
public function getValue()
|
||||
{
|
||||
return json_encode($this->value); // really?
|
||||
}
|
||||
|
||||
public function listKeys()
|
||||
{
|
||||
$keys = array_keys($this->value);
|
||||
|
|
Loading…
Reference in New Issue