<?php abstract class A{ abstract function xxx(); //: mixed /** other stuff */ } abstract class B extends A{ abstract function xxx(): stdClass; /** other stuff */ } class C extends B{ abstract function xxx(): stdClass{ return new stdClass(); } }
You have javascript disabled. You will not be able to edit any code.