<?php trait test{ public function __construct() { echo 'test'; } } abstract class myIntermediateClass{ use test; } class myClass extends myIntermediateClass{ public function __construct(){ echo 'myClass'; parent::__construct(); } } new myClass();
You have javascript disabled. You will not be able to edit any code.