<?php if(version_compare(PHP_VERSION, "5.4.0", ">=")) eval(' interface Baz { public function bad(); } trait Bar{ protected function bad(){} } class Foo implements Baz{ use Bar; } $test = new Foo(); var_dump($test instanceof Baz); ');
You have javascript disabled. You will not be able to edit any code.