ZF-2180: Zend_Feed_Rss->saveXML() violates coding standard
Description
According to the coding standard Zend_Feed_Rss' saveXML() method should be named saveXml().
According to the coding standard Zend_Feed_Rss' saveXML() method should be named saveXml().
Comments
Posted by Matthew Turland (elazar) on 2008-01-31T19:53:25.000+0000
I concur with this report.
"If a class name is comprised of more than one word, the first letter of each new word must be capitalized. Successive capitalized letters are not allowed, e.g. a class "Zend_PDF" is not allowed while "Zend_Pdf" is acceptable."
http://framework.zend.com/manual/en/…
Posted by Simone Carletti (weppos) on 2008-02-06T17:11:52.000+0000
Because method names in PHP are not case sensitive I assume it's safe to fix this issue for next minor release without compromising BC compatibility.
Posted by Simone Carletti (weppos) on 2008-02-06T17:14:17.000+0000
Fixed in r7831