📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-06-26 15:43:02
📂
/ (Root)
/
home
/
supecsoq
/
public_html
/
domains
/
migalexpark.com
/
wp-content
/
plugins
/
wp-mail-smtp
/
vendor_prefixed
/
guzzlehttp
/
psr7
/
src
📍 /home/supecsoq/public_html/domains/migalexpark.com/wp-content/plugins/wp-mail-smtp/vendor_prefixed/guzzlehttp/psr7/src
🔄 Refresh
✏️
Editing: LazyOpenStream.php
Writable
<?php namespace WPMailSMTP\Vendor\GuzzleHttp\Psr7; use WPMailSMTP\Vendor\Psr\Http\Message\StreamInterface; /** * Lazily reads or writes to a file that is opened only after an IO operation * take place on the stream. */ class LazyOpenStream implements \WPMailSMTP\Vendor\Psr\Http\Message\StreamInterface { use StreamDecoratorTrait; /** @var string File to open */ private $filename; /** @var string $mode */ private $mode; /** * @param string $filename File to lazily open * @param string $mode fopen mode to use when opening the stream */ public function __construct($filename, $mode) { $this->filename = $filename; $this->mode = $mode; } /** * Creates the underlying stream lazily when required. * * @return StreamInterface */ protected function createStream() { return \WPMailSMTP\Vendor\GuzzleHttp\Psr7\Utils::streamFor(\WPMailSMTP\Vendor\GuzzleHttp\Psr7\Utils::tryFopen($this->filename, $this->mode)); } }
💾 Save Changes
❌ Cancel