From 99b3bc735052e7fa77e0dc1e3fe44f194770c1fd Mon Sep 17 00:00:00 2001 From: "Mark A. Hershberger" Date: Wed, 10 Feb 2010 11:08:39 +0000 Subject: [PATCH] follow-up r62231 Document FileRepo::append() --- includes/filerepo/FileRepo.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/includes/filerepo/FileRepo.php b/includes/filerepo/FileRepo.php index f30bb3ab46..7ae5db22ba 100644 --- a/includes/filerepo/FileRepo.php +++ b/includes/filerepo/FileRepo.php @@ -397,6 +397,13 @@ abstract class FileRepo { */ abstract function storeTemp( $originalName, $srcPath ); + + /** + * Append the contents of the source path to the given file. + * @param $srcPath string location of the source file + * @param $toAppendPath string path to append to. + * @return mixed Status or false + */ abstract function append( $srcPath, $toAppendPath ); /** -- 2.20.1