Fatal error: Uncaught TypeError: GameScore::__construct(): Argument #1 ($point) must be of type int|float, string given, called in /var/www/html/union_type.php on line 22 and defined in /var/www/html/union_type.php:4
Stack trace:
#0 /var/www/html/union_type.php(22): GameScore->__construct('abwaf')
下記のように、メソッドで対応していない型のデータを返そうとした場合も同じエラーになります。
public function getScore() : int|float {
return `hogehoge`;
}
コメント