<?php
class MyException extends Exception {
public function __construct( $message ) {
parent::__construct( $message );
}
}
class Message {
private $text;
public function __construct( $text ) {
$this->text = $text;
}
public function __toString() {
return $this->text;
}
}
echo (new MyException('blah'))->getMessage();
echo (new MyException( new Message('blah') ))->getMessage();
Parse error: syntax error, unexpected T_OBJECT_OPERATOR, expecting ',' or ';' in /in/HUqRc on line 21
Process exited with code 255.
Output for 5.0.0 - 5.0.5
Parse error: parse error, unexpected T_OBJECT_OPERATOR, expecting ',' or ';' in /in/HUqRc on line 21
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/HUqRc 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/HUqRc 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/HUqRc on line 4
Process exited with code 255.