<?php class A { public function __construct(int $one, int $two = 666) {} } class B extends A { public function __construct(string $whatever) { parent::__construct(1); } } new B('foo'); new A(2);
You have javascript disabled. You will not be able to edit any code.