From: Mark A. Hershberger Date: Wed, 10 Feb 2010 11:08:39 +0000 (+0000) Subject: follow-up r62231 Document FileRepo::append() X-Git-Tag: 1.31.0-rc.0~37837 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/exercices/journal.php?a=commitdiff_plain;h=99b3bc735052e7fa77e0dc1e3fe44f194770c1fd;p=lhc%2Fweb%2Fwiklou.git follow-up r62231 Document FileRepo::append() --- 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 ); /**