No clue why the Date tests would suddenly fail as there was no commit in either Date or iCalendar for quite a while. Maybe it happened as I updated php-hudson-tools. Anyway matching the signatures seems the right thing to do.
*
* @param $data TODO
*/
- public function parsevCalendar($data)
+ public function parsevCalendar($text, $base = 'VCALENDAR', $clear = true)
{
- parent::parsevCalendar($data, 'DAYLIGHT');
+ parent::parsevCalendar($text, 'DAYLIGHT');
}
/**
*
* @param $data TODO
*/
- public function parsevCalendar($data)
+ public function parsevCalendar($text, $base = 'VCALENDAR', $clear = true)
{
- parent::parsevCalendar($data, 'STANDARD');
+ parent::parsevCalendar($text, 'STANDARD');
}
/**