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: http://www.

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';