summaryrefslogtreecommitdiffstats
path: root/feed/client/curl.php
diff options
context:
space:
mode:
Diffstat (limited to 'feed/client/curl.php')
-rw-r--r--feed/client/curl.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/feed/client/curl.php b/feed/client/curl.php
new file mode 100644
index 000000000..3cacfe2aa
--- /dev/null
+++ b/feed/client/curl.php
@@ -0,0 +1,25 @@
+<?php
+/**
+ * ownCloud - News
+ *
+ * This file is licensed under the Affero General Public License version 3 or
+ * later. See the COPYING file.
+ *
+ * @author Alessandro Cosentino <cosenal@gmail.com>
+ * @author Bernhard Posselt <dev@bernhard-posselt.com>
+ * @copyright Alessandro Cosentino 2012
+ * @copyright Bernhard Posselt 2012, 2014
+ */
+
+namespace OCA\News\Feed\Client;
+
+class CURL extends HttpClient {
+
+ public function __construct ($version, array $config=null) {
+ parent::__construct($version, $config);
+ }
+
+
+}
+
+