<?php
class User
{
public function changeName($name)
{
}
}
class PrivateUser extends User
{
public function changeName($name, $blabla)
{
}
}
new PrivateUser();
Fatal error: Declaration of PrivateUser::changeName($name, $blabla) must be compatible with User::changeName($name) in /in/dd4fl on line 12
Process exited with code 255.
Output for 7.4.0 - 7.4.33
Warning: Declaration of PrivateUser::changeName($name, $blabla) should be compatible with User::changeName($name) in /in/dd4fl on line 12
Strict Standards: Declaration of PrivateUser::changeName() should be compatible with that of User::changeName() in /in/dd4fl on line 16
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/dd4fl 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/dd4fl 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/dd4fl on line 5
Process exited with code 255.