Details
Description
The "Countable" should implemented so the following code would work :
<?php $channel = new Zend_Feed_Rss('http://rss.example.com/channelName'); echo count($channel);
The "Countable" should implemented so the following code would work :
<?php $channel = new Zend_Feed_Rss('http://rss.example.com/channelName'); echo count($channel);
This patch implements the "Countable" interface and contains the corresponding unit test.