Automattic\WooCommerce\Internal\Admin\Logging\FileV2
File::close_stream
Close the stream for this file.
The stream will also close automatically when the class instance destructs, but this can be useful for avoiding having a large number of streams open simultaneously.
Method of the class: File{}
No Hooks.
Returns
true|false.
Usage
$File = new File(); $File->close_stream(): bool;
File::close_stream() File::close stream code WC 10.9.1
public function close_stream(): bool {
// phpcs:ignore WordPress.WP.AlternativeFunctions.file_system_read_fclose -- No suitable alternative.
return fclose( $this->stream );
}