removed excess indentation

This commit is contained in:
Ewout Fernhout 2021-03-18 18:19:40 +01:00
parent c51f748855
commit b0b2803989
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ class WC_Log_Handler_File extends WC_Log_Handler {
$temphandle = @fopen( $file, 'w+' ); // @codingStandardsIgnoreLine.
if ( is_resource( $temphandle ) ) {
@fclose( $temphandle ); // @codingStandardsIgnoreLine.
if ( Constants::is_defined( 'FS_CHMOD_FILE' ) ) {
@chmod( $file, FS_CHMOD_FILE ); // @codingStandardsIgnoreLine.
}