We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95e8751 commit 1b4601eCopy full SHA for 1b4601e
1 file changed
user_guide_src/source/installation/upgrade_430.rst
@@ -141,13 +141,13 @@ The way error and output streams are captured has changed. Now instead of::
141
protected function setUp(): void
142
{
143
CITestStreamFilter::$buffer = '';
144
- $this->stream_filter = stream_filter_append(STDOUT, 'CITestStreamFilter');
+ $this->streamFilter = stream_filter_append(STDOUT, 'CITestStreamFilter');
145
$this->streamFilter = stream_filter_append(STDERR, 'CITestStreamFilter');
146
}
147
148
protected function tearDown(): void
149
150
- stream_filter_remove($this->stream_filter);
+ stream_filter_remove($this->streamFilter);
151
152
153
need to use::
0 commit comments