<?php interface A { public function A($a); } class AB implements A { public function A($b) { print "hello" . $b; } } (new AB)->A('123');
You have javascript disabled. You will not be able to edit any code.