Get a specific key value.
string $key Key to retrieve.:
mixed|null Value of the key or NULL
public function get($key) { return isset($this->data[$key]) ? $this->data[$key] : null; }