From d9022f63880ce039446fba8364f68e656b7bf4cb Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Thu, 3 May 2012 13:01:35 +0200 Subject: Update to MediaWiki 1.19.0 --- includes/Cdb.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'includes/Cdb.php') diff --git a/includes/Cdb.php b/includes/Cdb.php index d7a2bca5..94aa1925 100644 --- a/includes/Cdb.php +++ b/includes/Cdb.php @@ -72,7 +72,7 @@ abstract class CdbWriter { * * @param $fileName string * - * @return bool + * @return CdbWriter_DBA|CdbWriter_PHP */ public static function open( $fileName ) { if ( CdbReader::haveExtension() ) { @@ -85,11 +85,15 @@ abstract class CdbWriter { /** * Create the object and open the file + * + * @param $fileName string */ abstract function __construct( $fileName ); /** * Set a key to a given value. The value will be converted to string. + * @param $key string + * @param $value string */ abstract public function set( $key, $value ); @@ -100,7 +104,6 @@ abstract class CdbWriter { abstract public function close(); } - /** * Reader class which uses the DBA extension */ -- cgit v1.2.3-54-g00ecf