summaryrefslogtreecommitdiffstats
path: root/utility/simplepieapifactory.php
diff options
context:
space:
mode:
Diffstat (limited to 'utility/simplepieapifactory.php')
-rw-r--r--utility/simplepieapifactory.php53
1 files changed, 0 insertions, 53 deletions
diff --git a/utility/simplepieapifactory.php b/utility/simplepieapifactory.php
deleted file mode 100644
index 92cbe18f3..000000000
--- a/utility/simplepieapifactory.php
+++ /dev/null
@@ -1,53 +0,0 @@
-<?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\Utility;
-
-
-class SimplePieAPIFactory {
-
- /**
- * Builds a simplepie file object. This is needed because
- * the file object contains logic in its constructor which makes it
- * impossible to inject and test
- *
- * @param $url
- * @param int $timeout
- * @param int $redirects
- * @param string $headers
- * @param string $useragent
- * @param bool $force_fsockopen
- * @return \SimplePie_File a new object
- */
- public function getFile($url, $timeout=10, $redirects=5, $headers=null,
- $useragent=null, $force_fsockopen=false) {
-
- return new \SimplePie_File($url, $timeout, $redirects, $headers,
- $useragent, $force_fsockopen);
- }
-
-
- /**
- * Returns a new instance of a SimplePie_Core() object. This is needed
- * because the class relies on external dependencies which are not passed
- * in via the constructor and thus making it nearly impossible to unit test
- * code that uses this class
- * @return \SimplePie_Core instance
- */
- public function getCore() {
- return new \SimplePie();
- }
-
-
-} \ No newline at end of file