Restore size=60 that got eaten by r55453
[mediawiki.git] / includes / ExternalStoreHttp.php
blob37fbbe605810945ea773d95e7f0fb729b6d9581e
1 <?php
2 /**
3 * Example class for HTTP accessable external objects
5 * @ingroup ExternalStorage
6 */
7 class ExternalStoreHttp {
8 /* Fetch data from given URL */
9 function fetchFromURL( $url ) {
10 $ret = Http::get( $url );
11 return $ret;
14 /* XXX: may require other methods, for store, delete,
15 * whatever, for initial ext storage