Re: [PHP-DEV] "Multiple Inheritance" for Interfaces

2003-12-13 Thread Michael Walter
Cesare D'Amico wrote: Alle 16:09, sabato 13 dicembre 2003, Sebastian Bergmann ha scritto: - Does interface C implements A, B {} do what I want? This syntax sounds strange to me: an interface should'nt _implement_ other interfaces... sounds as nonsense. That might be part of his

Re: [PHP-DEV] "Multiple Inheritance" for Interfaces

2003-12-13 Thread Cesare D'Amico
Alle 16:09, sabato 13 dicembre 2003, Sebastian Bergmann ha scritto: >     - Does > >         interface C implements A, B {} > >       do what I want? This syntax sounds strange to me: an interface should'nt _implement_ other interfaces... sounds as nonsense. Ciao ce -- Cesare D'Amico - bos

[PHP-DEV] "Multiple Inheritance" for Interfaces

2003-12-13 Thread Sebastian Bergmann
While porting PicoContainer to PHP 5 I noticed that we currently do not support syntax to have an interface extend more than one parent interface. For instance interface A {} interface B {} interface C extends A, B {} is possible in Java while PHP 5 currently throws a synta