Thomas Rabaix wrote: > Hello, > > I hope you are going to keep the feature ! > > 1. That help to keep the code clean (Imagine a checkout process in one > single file ...) > 2. easy to find the file in eclipse alt+shift+r is your friend > (textmate offer the same feature...) > 3. easy way to avoid errors when working with other devs. > 4. it will save overhead by not loading lot of unnecessary code > > however there is no way to solve the problem (no namespace in php) excepts : > - by throwing an exception for duplicate class name during the same request. > - or by renaming the class ...
This feature is staying. But.... there's a change you're goign to need to make, as I will be removing support for one of the naming conventions, as it's flawed. This will work: <module>_<action>Action extends sfAction This will not: <action>Action extends sfAction Unfortunately, I've not got the time at the moment to write and test an upgrade script, so I'm not going to remove support for this quite yet. This if of course, assuming no one here objects to the change ..... now is the time to speak up on this :) Technically, there's not much of a reason to remove it, other then to protect developers from potentially hitting this issue..... but I think the change should be moved. The largest downside of enforcing this is that you will not simply be able to rename a module that uses this kind of naming convention.... Anyway.... thoughts? -- Ian P. Christian ~ http://pookey.co.uk --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "symfony developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/symfony-devs?hl=en -~----------~----~----~----~------~----~------~--~---
