Skip to content

Commit ae2fc2d

Browse files
committed
FilteredStream::getSize returns null
1 parent 4043532 commit ae2fc2d

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## Unreleased
4+
5+
### Fixed
6+
7+
- FilteredStream::getSize returns null because the contents size is unknown.
8+
39
## 1.4.0 - 2016-10-20
410

511
### Added

src/Encoding/FilteredStream.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,14 @@ public function getContents()
127127
return $buffer;
128128
}
129129

130+
/**
131+
* {@inheritdoc}
132+
*/
133+
public function getSize()
134+
{
135+
return null;
136+
}
137+
130138
/**
131139
* {@inheritdoc}
132140
*/

0 commit comments

Comments
 (0)