<?php trait ExampleTrait { final function execute() { } } class Example { use ExampleTrait; // Should raise an \E_FATAL with the following message: // "Cannot override final method Example::execute() in [...] on line 26" function execute() { } } class Child extends Example { function execute() {} }
You have javascript disabled. You will not be able to edit any code.