<?php class P { public function __construct(array $array) { print "P"; } } class C extends P { public function __construct(int $int) { print "C"; } } new C(1);
You have javascript disabled. You will not be able to edit any code.