From: addshore Date: Sun, 26 Jan 2014 18:47:42 +0000 (+0100) Subject: Fix phpdoc in SwiftFileBackend X-Git-Tag: 1.31.0-rc.0~17130^2 X-Git-Url: http://git.cyclocoop.org//%27%40script%40/%27?a=commitdiff_plain;h=6e577364991555ceab9784457028e8f3396e1301;p=lhc%2Fweb%2Fwiklou.git Fix phpdoc in SwiftFileBackend Docs for $status and $code were swapped. Change-Id: I88bd81b671f0e9a4176483fb744e45f2477672b5 --- 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 = '' ) {