Followup r94995: add hooks.txt entries for the new hooks
[lhc/web/wiklou.git] / includes / ExternalStore.php
index d1cf4a5..3bee6ed 100644 (file)
@@ -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 string 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 );