<?php trait A { public $foo; function foo() { assert($this->foo === NULL); $this->foo = TRUE; } } trait B { public $foo; function bar() { assert($this->foo === NULL); $this->foo = TRUE; } } class C { use A, B; } $c = new C; $c->foo(); $c->bar();
You have javascript disabled. You will not be able to edit any code.