2017-05-28 03:14:43 +00:00
|
|
|
<?php return [
|
|
|
|
'mime' => "application/rss+xml",
|
|
|
|
'content' => <<<MESSAGE_BODY
|
|
|
|
<rss version="2.0">
|
|
|
|
<channel>
|
|
|
|
<title>Example title</title>
|
2021-01-08 21:46:21 +00:00
|
|
|
<link>http://localhost:8000/</link>
|
2017-05-28 03:14:43 +00:00
|
|
|
<description>Example description</description>
|
|
|
|
|
|
|
|
<item>
|
|
|
|
<pubDate>Sat, 27 May 2017 11:00:00 GMT</pubDate>
|
|
|
|
<guid>http://example.com/1</guid>
|
|
|
|
</item>
|
|
|
|
<item>
|
|
|
|
<pubDate>Sat, 27 May 2017 21:12:00 GMT</pubDate>
|
|
|
|
<guid>http://example.com/2</guid>
|
|
|
|
</item>
|
|
|
|
<item>
|
|
|
|
<pubDate>Sat, 27 May 2017 22:00:00 GMT</pubDate>
|
|
|
|
<guid>http://example.com/3</guid>
|
|
|
|
</item>
|
|
|
|
<item>
|
|
|
|
<pubDate>Sat, 27 May 2017 21:31:00 GMT</pubDate>
|
|
|
|
<guid>http://example.com/4</guid>
|
|
|
|
</item>
|
|
|
|
</channel>
|
|
|
|
</rss>
|
|
|
|
MESSAGE_BODY
|
2017-08-29 14:50:31 +00:00
|
|
|
];
|