<?php interface AAA{ function method($x); } interface BBB extends AAA{ function method($x, $y = null); } // this works: class AA_ implements AAA{ function method($x){} } class BB_ extends AA_ implements BBB{ function method($x, $y = null){ echo "lol"; } } (new BB_())->method(10,10); // this doesn't: abstract class AAA_ implements AAA{} abstract class BBB_ extends AAA_ implements BBB{}
You have javascript disabled. You will not be able to edit any code.
Value for `_results` contains invalid data `array`