Consider:
public function & get($name, $default = null)
Why &?
&
It means it returns a reference to the result as opposed to a copy of it.
Returning References in PHP