If you could, please file an issue per component in the issue tracker, and if you have it, supply a patch. The component maintainer will be able to review and commit the patch if everything looks kosher.
Did you by chance use Zend_Reflection to introspect the DocBlocks? -ralph a...@net wrote:
Hello! I've created a tool for analyzing method and parameter types in PHPDoc comments for ZF classes and it found ~200 errors like: Zend_Amf_Server.getResponse : return type was not found: Zend_Amf_Server_Response Zend_Application_Resource_Db.getDbAdapter : return type was not found: Zend_Db_Adapter_Interface Zend_Auth_Adapter_InfoCard.getPKCipherObject : return type was not found Zend_InfoCard_Cipher_PKI_Interface Corrections are easy: Zend_Amf_Server_Response - should be Zend_Amf_Response Zend_Db_Adapter_Interface - should be Zend_Db_Adapter_Abstract etc Importance of these errors is low but they break code navigation in some places. Unfortunately, the tool is the plugin to Enterprise Architect so it cannot be easy shared and integrated into another systems. What do you think is the best way with these errors? Just ignore them, post to Jira, or something so? Thanks, Alex
