Код: Выделить всё
class baseClass {
function method() {
echo 'A';
}
}
trait mixin {
function mixinFunction() {
... /// method();
Подробнее здесь: https://stackoverflow.com/questions/239 ... rent-class
Код: Выделить всё
class baseClass {
function method() {
echo 'A';
}
}
trait mixin {
function mixinFunction() {
... /// method();