<?php interface I { function foo(): A; } class X implements i { function foo() : A { // return type is not useful here throw new Exception(''); // PHP complains that a value must be returned return; // PHP won't complain until execution time return 1; } }
You have javascript disabled. You will not be able to edit any code.