<?php trait A{ public function a(){} } trait B{ use A; } trait C{ use A; } class D{ // use B, C; // Fatal error: Trait method a has not been applied, because there are collisions with other trait methods on D }
You have javascript disabled. You will not be able to edit any code.