<?php
class A{
public function __construct(){
echo 'Instance of A created' . PHP_EOL;
}
}
class B{
protected function __construct(){
echo 'Instance of B created' . PHP_EOL;
}
}
class C{
private function __construct(){
echo 'Instance of C created' . PHP_EOL;
}
}
Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/5dHO8 on line 4
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/5dHO8 on line 4
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/5dHO8 on line 4
Process exited with code 255.