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