<?php class Bar {} class TheParent{ public function __construct(string $foo, Bar $storage, string $baz) {} } class Foo extends TheParent { public function __construct(string $foo, ?Bar $storage = NULL, string $baz) {} } class TheChild extends Foo { public function __construct(string $foo, Bar $storage, string $baz) {} }
You have javascript disabled. You will not be able to edit any code.