Re: [PHP-DEV] Class visibility in namespaces

2008-10-29 Thread Marcus Boerger
Hello Ron, we agreed long ago on a very easy scheme, there shall only be is-a and public classes. marcus Wednesday, October 29, 2008, 9:12:30 AM, you wrote: > Hi, > I'm hoping I don't cause yet another flame war about the n-word ;) > I was wondering if namespaces are going to support class

[PHP-DEV] Class visibility in namespaces

2008-10-29 Thread Ron Rademaker
Hi, I'm hoping I don't cause yet another flame war about the n-word ;) I was wondering if namespaces are going to support class visibility, and if no, would it be worth considering adding that feature? What I mean exacty is: In namespace Foo: public class Foo { } protected class Bar { } -