Remove trailing whitespace in legacy class files

This commit is contained in:
Kijin Sung 2023-01-17 21:07:55 +09:00
parent 8a6039b829
commit c881e73c1d
29 changed files with 481 additions and 483 deletions

View file

@ -2,7 +2,7 @@
/* Copyright (C) NAVER <http://www.navercorp.com> */
/**
* File abstraction class
* File abstraction class
*
* @author NAVER (developers@xpressengine.com)
*/
@ -28,10 +28,10 @@ class FileObject extends BaseObject
var $mode = "r";
/**
* Constructor
* Constructor
*
* @param string $path Path of target file
* @param string $mode File open mode
* @param string $mode File open mode
* @return void
*/
function __construct($path, $mode)
@ -43,10 +43,10 @@ class FileObject extends BaseObject
}
/**
* Append target file's content to current file
* Append target file's content to current file
*
* @param string $file_name Path of target file
* @return void
* @return void
*/
function append($file_name)
{
@ -62,7 +62,7 @@ class FileObject extends BaseObject
/**
* Check current file meets eof
*
* @return bool true: if eof. false: otherwise
* @return bool true: if eof. false: otherwise
*/
function feof()
{
@ -70,7 +70,7 @@ class FileObject extends BaseObject
}
/**
* Read from current file
* Read from current file
*
* @param int $size Size to read
* @return string Returns the read string or false on failure.
@ -81,7 +81,7 @@ class FileObject extends BaseObject
}
/**
* Write string to current file
* Write string to current file
*
* @param string $str String to write
* @return int Returns the number of bytes written, or false on error.
@ -144,7 +144,7 @@ class FileObject extends BaseObject
}
/**
* Close file
* Close file
*
* @return void
*/