From 6e577364991555ceab9784457028e8f3396e1301 Mon Sep 17 00:00:00 2001 From: addshore Date: Sun, 26 Jan 2014 19:47:42 +0100 Subject: [PATCH] Fix phpdoc in SwiftFileBackend Docs for $status and $code were swapped. Change-Id: I88bd81b671f0e9a4176483fb744e45f2477672b5 --- includes/filebackend/SwiftFileBackend.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/filebackend/SwiftFileBackend.php b/includes/filebackend/SwiftFileBackend.php index b459b776aa..8efdcc7c80 100644 --- a/includes/filebackend/SwiftFileBackend.php +++ b/includes/filebackend/SwiftFileBackend.php @@ -1570,11 +1570,11 @@ class SwiftFileBackend extends FileBackendStore { * Log an unexpected exception for this backend. * This also sets the Status object to have a fatal error. * - * @param Status $code null + * @param Status|null $status * @param string $func * @param array $params * @param string $err Error string - * @param integer $status HTTP status + * @param integer $code HTTP status * @param string $desc HTTP status description */ public function onError( $status, $func, array $params, $err = '', $code = 0, $desc = '' ) { -- 2.20.1