We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dafefdb commit a64944cCopy full SHA for a64944c
src/Encoding/FilteredStream.php
@@ -154,6 +154,30 @@ public function __toString()
154
return $this->getContents();
155
}
156
157
+ /**
158
+ * {@inheritdoc}
159
+ */
160
+ public function isSeekable()
161
+ {
162
+ return false;
163
+ }
164
+
165
166
167
168
+ public function rewind()
169
170
+ throw new \RuntimeException('Cannot rewind a filtered stream');
171
172
173
174
175
176
+ public function seek($offset, $whence = SEEK_SET)
177
178
+ throw new \RuntimeException('Cannot seek a filtered stream');
179
180
181
/**
182
* Returns the read filter name.
183
*
0 commit comments