<?php interface AllowsOpen{ public function open(); } trait Container{ public function open(){ echo 'Something is inside!'; } } class Book implements AllowsOpen{ use Container; public function open(){ echo 'You see only blank pages'; } } $objBook = new Book(); $objBook->open();
You have javascript disabled. You will not be able to edit any code.