This is an error 404
There are `0` results
preferences:
130.85 ms | 997 KiB | 7 Q<?hh
class Foo {
protected $test;
function setTest($test) : Foo {
$this->test = $test;
return $this;
}
}
class Bar extends Foo {
function setTest($test) : Bar {
return parent::setTest($test);
}
}
var_dump((new Bar)->setTest('test'));