FileHandler::writeFile 의 리턴 주석 고침.

기존의 경우 FileHandler::writeFile의 주석이 void으로 반환한다고 되어잇지만 실제 리턴값은 bool과 string으로 리턴합니다. 해당 리턴값주석을 Rhymix\Framework\Storage::write에 있는 내용과 일치 시켰습니다.
This commit is contained in:
BJRambo 2018-02-26 13:36:32 +09:00
parent 271fd78c08
commit 488181eaae

View file

@ -76,7 +76,7 @@ class FileHandler
* @param string $filename Path of target file
* @param string $buff Content to be written
* @param string $mode a(append) / w(write)
* @return void
* @return false|string
*/
public static function writeFile($filename, $buff, $mode = "w")
{