<?php class Foo { protected $test; function setTest($test) { $this->test = $test; return $this; } } class Bar extends Foo { function setTest($test) : Bar { return parent::setTest($test); } } var_dump((new Bar)->setTest('test'));
You have javascript disabled. You will not be able to edit any code.