Details
-
Type:
Improvement
-
Status:
Open
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: 1.2.2
-
Fix Version/s: None
-
Component/s: Import/Export
-
Labels:None
-
Environment:Symfony 1.4.6 with Doctrine 1.2.2 on Debian Linux 5.0
Description
As stated in DC-518 the getInstance method is added in table classes generated by Doctrine 1.2.2. The problem is, that the word order is wrong for the parameter keyword to support auto completion in IDEs. At least the NetBeans IDE is not able to use this information properly.
As it is common to expect phpDocumentor comment syntax, the first word after the @param keyword specifies the type, which is in the current version object. It would be really helpful if the current form could be changed from
Doctrine/Import/Builder.php:1077
* @return object %s
to
Doctrine/Import/Builder.php:1077
* @return %s
as it was propossed in the above mentioned issue.