<?php
class Base {
public function __construct(string $bar)
{
echo 'foo';
}
}
class MD extends Base {
public function __construct($bar)
{
parent::__construct($bar);
echo $bar;
}
}
$md = new MD('bar');
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0
foobar
Catchable fatal error: Argument 1 passed to Base::__construct() must be an instance of string, string given, called in /in/dUDYE on line 15 and defined in /in/dUDYE on line 5
Process exited with code 255.
Output for 5.1.0 - 5.1.6
Fatal error: Argument 1 passed to Base::__construct() must be an object of class string, called in /in/dUDYE on line 15 and defined in /in/dUDYE on line 5
Process exited with code 255.
Output for 5.0.0 - 5.0.5
Fatal error: Argument 1 must be an object of class string in /in/dUDYE on line 5
Process exited with code 255.
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/dUDYE on line 5
Process exited with code 255.
Parse error: parse error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/dUDYE on line 5
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `T_OLD_FUNCTION' or `T_FUNCTION' or `T_VAR' or `'}'' in /in/dUDYE on line 5
Process exited with code 255.