<?php /** * @legacy */ interface A { function foo(); } /** * Supersedes legacy interface A */ interface B extends A { /** * @param int|null $x * Optional parameter added in new version. */ # function foo($x = NULL); } class C implements B { function foo($x = NULL) {} }
You have javascript disabled. You will not be able to edit any code.