From 6e35efeb2d09a019975929c45e243b2ac66c3227 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Tue, 17 Jul 2012 21:24:19 -0700 Subject: [PATCH] [FileBackend] Removed @since formatting for options to fix doxygen. Change-Id: Ic1cb55dc9317de34fc50b7c590a2cd6e80c800ad --- includes/filerepo/backend/FileBackend.php | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/includes/filerepo/backend/FileBackend.php b/includes/filerepo/backend/FileBackend.php index efafbd1c84..1b2fbf0296 100644 --- a/includes/filerepo/backend/FileBackend.php +++ b/includes/filerepo/backend/FileBackend.php @@ -245,7 +245,7 @@ abstract class FileBackend { * - nonJournaled : Don't log this operation batch in the file journal. * This limits the ability of recovery scripts. * - parallelize : Try to do operations in parallel when possible. - * - bypassReadOnly : Allow writes in read-only mode (@since 1.20). + * - bypassReadOnly : Allow writes in read-only mode (since 1.20). * * @remarks Remarks on locking: * File system paths given to operations should refer to files that are @@ -391,6 +391,7 @@ abstract class FileBackend { * - move * - delete * - null + * * a) Create a new file in storage with the contents of a string * @code * array( @@ -443,7 +444,7 @@ abstract class FileBackend { * nothing if the source file does not exist. * * $opts is an associative of boolean flags, including: - * - bypassReadOnly : Allow writes in read-only mode (@since 1.20) + * - bypassReadOnly : Allow writes in read-only mode (since 1.20) * * @par Return value: * This returns a Status, which contains all warnings and fatals that occured @@ -581,9 +582,9 @@ abstract class FileBackend { * * $params include: * - dir : storage directory - * - noAccess : try to deny file access (@since 1.20) - * - noListing : try to deny file listing (@since 1.20) - * - bypassReadOnly : allow writes in read-only mode (@since 1.20) + * - noAccess : try to deny file access (since 1.20) + * - noListing : try to deny file listing (since 1.20) + * - bypassReadOnly : allow writes in read-only mode (since 1.20) * * @param $params Array * @return Status @@ -612,7 +613,7 @@ abstract class FileBackend { * - dir : storage directory * - noAccess : try to deny file access * - noListing : try to deny file listing - * - bypassReadOnly : allow writes in read-only mode (@since 1.20) + * - bypassReadOnly : allow writes in read-only mode (since 1.20) * @return Status */ final public function secure( array $params ) { @@ -638,7 +639,7 @@ abstract class FileBackend { * - dir : storage directory * - access : try to allow file access * - listing : try to allow file listing - * - bypassReadOnly : allow writes in read-only mode (@since 1.20) + * - bypassReadOnly : allow writes in read-only mode (since 1.20) * * @param $params Array * @return Status @@ -664,8 +665,8 @@ abstract class FileBackend { * @param $params Array * $params include: * - dir : storage directory - * - recursive : recursively delete empty subdirectories first (@since 1.20) - * - bypassReadOnly : allow writes in read-only mode (@since 1.20) + * - recursive : recursively delete empty subdirectories first (since 1.20) + * - bypassReadOnly : allow writes in read-only mode (since 1.20) * @return Status */ final public function clean( array $params ) { @@ -878,7 +879,7 @@ abstract class FileBackend { * @param $params array * $params include: * - dir : storage directory - * - topOnly : only return direct child files of the directory (@since 1.20) + * - topOnly : only return direct child files of the directory (since 1.20) * @return Traversable|Array|null Returns null on failure */ abstract public function getFileList( array $params ); -- 2.20.1