1<?php
2require_once('..' . DIRECTORY_SEPARATOR . 'ZoteroFeedReader.php');
3
4class StubZoteroFeedReader implements ZoteroFeedReader
5{
6	private $fileName;
7
8	public function __construct($fileName = "TestEntries.xml")
9	{
10		$this->fileName = $fileName;
11	}
12
13	function getFeed()
14	{
15		return file_get_contents(dirname(__FILE__) . DIRECTORY_SEPARATOR . $this->fileName);
16	}
17}
18?>