follow-up r62231 Document FileRepo::append()
authorMark A. Hershberger <mah@users.mediawiki.org>
Wed, 10 Feb 2010 11:08:39 +0000 (11:08 +0000)
committerMark A. Hershberger <mah@users.mediawiki.org>
Wed, 10 Feb 2010 11:08:39 +0000 (11:08 +0000)
includes/filerepo/FileRepo.php

index f30bb3a..7ae5db2 100644 (file)
@@ -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 );
 
        /**