Passes through all unknown calls onto the storage object.
public function __call($method, $args) { return call_user_func_array(array( $this->storage, $method, ), $args); }