Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- <?php
-
- namespace GuzzleHttp\Psr7;
-
- use Psr\Http\Message\StreamInterface;
-
- /**
- * Stream decorator that prevents a stream from being seeked.
- *
- * @final
- */
- class NoSeekStream implements StreamInterface
- {
- use StreamDecoratorTrait;
-
- public function seek($offset, $whence = SEEK_SET)
- {
- throw new \RuntimeException('Cannot seek a NoSeekStream');
- }
-
- public function isSeekable()
- {
- return false;
- }
- }
|