We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 923ed1f + a64944c commit a469988Copy full SHA for a469988
src/Encoding/FilteredStream.php
@@ -161,6 +161,30 @@ public function __toString()
161
return $this->getContents();
162
}
163
164
+ /**
165
+ * {@inheritdoc}
166
+ */
167
+ public function isSeekable()
168
+ {
169
+ return false;
170
+ }
171
+
172
173
174
175
+ public function rewind()
176
177
+ throw new \RuntimeException('Cannot rewind a filtered stream');
178
179
180
181
182
183
+ public function seek($offset, $whence = SEEK_SET)
184
185
+ throw new \RuntimeException('Cannot seek a filtered stream');
186
187
188
/**
189
* Returns the read filter name.
190
*
0 commit comments