<?php trait Muffins { public static function didIBurnThem() { echo 'yep'; } } class OhNo { use Muffins { didIBurnThem as parentDidIBurnThem; } public static function didIBurnThem() { echo 'nope or maybe ' . self::parentDidIBurnThem(); } } OhNo::didIBurnThem();
You have javascript disabled. You will not be able to edit any code.