PATH:
home
/
letacommog
/
laindinois
/
wp-content
/
plugins
/
google-site-kit
/
third-party
/
guzzlehttp
/
psr7
/
src
<?php namespace Google\Site_Kit_Dependencies\GuzzleHttp\Psr7; use Google\Site_Kit_Dependencies\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 \Google\Site_Kit_Dependencies\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 \Google\Site_Kit_Dependencies\GuzzleHttp\Psr7\Utils::streamFor(\Google\Site_Kit_Dependencies\GuzzleHttp\Psr7\Utils::tryFopen($this->filename, $this->mode)); } }
[+]
..
[-] DroppingStream.php
[edit]
[-] LazyOpenStream.php
[edit]
[-] StreamWrapper.php
[edit]
[-] MultipartStream.php
[edit]
[-] functions_include.php
[edit]
[-] UriNormalizer.php
[edit]
[-] ServerRequest.php
[edit]
[-] UriResolver.php
[edit]
[-] FnStream.php
[edit]
[-] Response.php
[edit]
[-] UploadedFile.php
[edit]
[-] Rfc7230.php
[edit]
[-] StreamDecoratorTrait.php
[edit]
[-] CachingStream.php
[edit]
[-] Query.php
[edit]
[-] InflateStream.php
[edit]
[-] MessageTrait.php
[edit]
[-] Message.php
[edit]
[-] functions.php
[edit]
[-] Header.php
[edit]
[-] Stream.php
[edit]
[-] LimitStream.php
[edit]
[-] PumpStream.php
[edit]
[-] Request.php
[edit]
[-] BufferStream.php
[edit]
[-] NoSeekStream.php
[edit]
[-] Utils.php
[edit]
[-] MimeType.php
[edit]
[-] AppendStream.php
[edit]
[-] Uri.php
[edit]