Bug 35034 - moved autocomment-prefix between the prefix and the arrow. Follow up...
[lhc/web/wiklou.git] / includes / ExternalStoreHttp.php
index 37fbbe6..092ff7d 100644 (file)
@@ -1,11 +1,19 @@
 <?php
+
 /**
- * Example class for HTTP accessable external objects
+ * Example class for HTTP accessable external objects.
+ * Only supports reading, not storing.
  *
  * @ingroup ExternalStorage
  */
 class ExternalStoreHttp {
-       /* Fetch data from given URL */
+
+       /**
+        * Fetch data from given URL
+        *
+        * @param $url String: the URL
+        * @return String: the content at $url
+        */
        function fetchFromURL( $url ) {
                $ret = Http::get( $url );
                return $ret;