Modern PHP features explained - PHP 8.0 and 8.1 | Laravel News

PHOTO EMBED

Sat Nov 05 2022 20:19:26 GMT+0000 (Coordinated Universal Time)

Saved by @jrafaelg

1// PHP 8.0
2match (string $method) {
3    'GET' => $method = 'GET',
4    'POST' => $method = 'POST',
5    default => throw new Exception(
6        message: "$method is not supported yet.",
7    ),
8};
content_copyCOPY

https://laravel-news.com/modern-php-features-explained