| Summary: | Change the order of the @throws statements in the auto-generated comment | ||
|---|---|---|---|
| Product: | z_Archived | Reporter: | Sylvia Tancheva <silviya> |
| Component: | PDT | Assignee: | PHP Core <php.core-inbox> |
| Status: | CLOSED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | gadi |
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | All | ||
| OS: | All | ||
| Whiteboard: | |||
fixed in head Verified at PDT-2.2.0.v20100517 Ordered like expect Closing this issue... Verified by Teodor Kirkov teodor.k@zend.com |
Consider the code: function someFunc() { // .. throw new FirstTypeException(); // .. throw new SecondTypeException(); // .. throw new ThirdTypeException(); } Generate comment for the function. Result: /** * Enter description here ... * @throws ThirdTypeException * @throws SecondTypeException * @throws FirstTypeException */ Expected: The @throws statements should be in the right order of appearance and not in reverse way as they are currently.