Hi Stefan,
I suggest you to remove words like 'discussion' from the wiki,
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.
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';