Re: [PHP] possible namespace bug?

2011-01-21 Thread Tommy Pham
On Thu, Jan 20, 2011 at 5:27 PM, David Harkness wrote: On Thu, Jan 20, 2011 at 4:26 PM, Tommy Pham wrote: Anyway, I found the problem:  \N   in use org\puremvc\php\patterns\observer\Notifier; AFAIK \n is only processed inside double-quoted strings and here-docs. The \N has no special

[PHP] possible namespace bug?

2011-01-20 Thread Tommy Pham
Hi folks, I thought I try implementing namesapce on one the ported apps I did a while back but ran into a problem. First the code: //namespace org\puremvc\php\interfaces; interface ICommand { function execute(INotification $notification); } interface INotifier { function

Re: [PHP] possible namespace bug?

2011-01-20 Thread Adam Richardson
On Thu, Jan 20, 2011 at 5:33 PM, Tommy Pham tommy...@gmail.com wrote: Hi folks, I thought I try implementing namesapce on one the ported apps I did a while back but ran into a problem. First the code: //namespace org\puremvc\php\interfaces; interface ICommand { function