X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=blobdiff_plain;f=includes%2FExternalStore.php;h=3bee6ed8ba9955a8b1215a2165d87c5a5c12bc59;hb=04e002d5823dbb63cdd52bb235846fd08d433585;hp=2f6b222cb85561f1ec30450a920950c732f64c8e;hpb=7bb50c630a6b760c0cdc7662c44f8c3607954a19;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/ExternalStore.php b/includes/ExternalStore.php index 2f6b222cb8..3bee6ed8ba 100644 --- a/includes/ExternalStore.php +++ b/includes/ExternalStore.php @@ -78,7 +78,10 @@ class ExternalStore { * Store a data item to an external store, identified by a partial URL * The protocol part is used to identify the class, the rest is passed to the * class itself as a parameter. - * @return The URL of the stored data item, or false on error + * @param $url + * @param $data + * @param $params array + * @return string|false The URL of the stored data item, or false on error */ static function insert( $url, $data, $params = array() ) { list( $proto, $params ) = explode( '://', $url, 2 ); @@ -97,7 +100,7 @@ class ExternalStore { * * @param $data String * @param $storageParams Array: associative array of parameters for the ExternalStore object. - * @return The URL of the stored data item, or false on error + * @return string The URL of the stored data item, or false on error */ public static function insertToDefault( $data, $storageParams = array() ) { global $wgDefaultExternalStore; @@ -136,7 +139,12 @@ class ExternalStore { } } - /** Like insertToDefault, but inserts on another wiki */ + /** + * @param $data + * @param $wiki + * + * @return string + */ public static function insertToForeignDefault( $data, $wiki ) { return self::insertToDefault( $data, array( 'wiki' => $wiki ) ); }