<?php abstract class Entity {} class FooEntity extends Entity {} abstract class Repository { abstract public function getDetail(): Entity; } class FooRepository extends Repository { public function getDetail(): FooEntity { return new FooEntity; } } $obj = new FooRepository(); $obj->getDetail();
You have javascript disabled. You will not be able to edit any code.
Value for `_results` contains invalid data `array`