Skip to content

Commit 1b4601e

Browse files
committed
docs: rename property name
1 parent 95e8751 commit 1b4601e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

user_guide_src/source/installation/upgrade_430.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,13 +141,13 @@ The way error and output streams are captured has changed. Now instead of::
141141
protected function setUp(): void
142142
{
143143
CITestStreamFilter::$buffer = '';
144-
$this->stream_filter = stream_filter_append(STDOUT, 'CITestStreamFilter');
144+
$this->streamFilter = stream_filter_append(STDOUT, 'CITestStreamFilter');
145145
$this->streamFilter = stream_filter_append(STDERR, 'CITestStreamFilter');
146146
}
147147

148148
protected function tearDown(): void
149149
{
150-
stream_filter_remove($this->stream_filter);
150+
stream_filter_remove($this->streamFilter);
151151
}
152152

153153
need to use::

0 commit comments

Comments
 (0)