WC_Log_Handler_File::__destruct()publicWC 1.0

Destructor.

Cleans up open file handles.

Method of the class: WC_Log_Handler_File{}

No Hooks.

Return

null. Nothing (null).

Usage

$WC_Log_Handler_File = new WC_Log_Handler_File();
$WC_Log_Handler_File->__destruct();

WC_Log_Handler_File::__destruct() code WC 8.7.0

public function __destruct() {
	foreach ( $this->handles as $handle ) {
		if ( is_resource( $handle ) ) {
			fclose( $handle ); // @codingStandardsIgnoreLine.
		}
	}
}