isQuoted = $dictionary['quoted']; $token->operator = $dictionary['operator']; $token->value = $dictionary['value']; $token->function = idx($dictionary, 'function'); return $token; } public function isQuoted() { return $this->isQuoted; } public function getValue() { return $this->value; } public function getOperator() { return $this->operator; } public function getFunction() { return $this->function; } }