Re: [PHP] Question on PHP 6 and static calls to instance methods.

2008-05-04 Thread Nathan Nobbe
On 5/3/08, Adam Richardson [EMAIL PROTECTED] wrote: I have a quick question on what's coming in PHP 6. I've incorporated use of the ability to call instance methods through static calls, allowing for me to mimic multiple inheritance without having to make edits to classes that are already

[PHP] Question on PHP 6 and static calls to instance methods.

2008-05-03 Thread Adam Richardson
I have a quick question on what's coming in PHP 6. I've incorporated use of the ability to call instance methods through static calls, allowing for me to mimic multiple inheritance without having to make edits to classes that are already working because of the behavior of '$this' when

[PHP] Question on PHP 6 and static calls to instance methods.

2008-05-03 Thread Adam Richardson
I've incorporated use of the ability to call instance methods through static calls, allowing for me to mimic multiple inheritance without having to make edits to classes that are already working because of the behavior of '$this' when instance methods are called statically. As stated on in

Re: [PHP] Question on PHP 6 and static calls to instance methods.

2008-05-03 Thread Robert Cummings
You would have better luck posing this question to the internals list: [EMAIL PROTECTED] Cheers, Rob. On Sat, 2008-05-03 at 17:32 -0400, Adam Richardson wrote: I've incorporated use of the ability to call instance methods through static calls, allowing for me to mimic multiple