public function stream_open(string $path, string $mode, int $options, ?string &$opened_path = null) : bool { $options = stream_context_get_options($this->context); if (!isset($options['guzzle']['stream'])) { return false; } $this->mode = $mode; $this->stream = $options['guzzle']['stream']; return true; }