Re: [PHP-DEV] Non-breaking Traits

2008-03-14 Thread Lokrain
Hi Stefan, I suggest you to remove words like 'discussion' from the wiki,

Re: [PHP-DEV] Non-breaking Traits

2008-03-13 Thread Stefan Marr
Hi Joshua, have added your RFC to the wiki. (http://wiki.php.net/rfc/nonbreakabletraits) Hope it is ok for you. Think we should somehow summarize the pro and cons for our proposals. Kind Regards Stefan -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit:

Re: [PHP-DEV] Non-breaking Traits

2008-03-02 Thread Stefan Marr
Hi Joshua, seams to me the interest in traits decreases rapidly :( Joshua Thompson schrieb: trait A1 { private $a = 'A1'; private function printA() { echo $this-a; } public function callPrintA1() { $this-printA(); } } trait A2 { private $a = 'A2';

[PHP-DEV] Non-breaking Traits

2008-02-28 Thread Joshua Thompson
Let me start out by saying that I like the traits proposal as it is now (you can argue the keywords etc. later). I am just offering an idea that I also would find acceptable, that gives the most control to the developer, and allows for non-breaking, stateful traits. Non-breaking Traits