forked from z7zmey/php-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Closed
Labels
PHP 8PHP 8 featuresPHP 8 features
Description
RFC: https://wiki.php.net/rfc/trailing_comma_in_parameter_list
Example:
class Uri {
private function __construct(
?string $scheme,
?string $user,
?string $pass,
?string $host,
?int $port,
string $path,
?string $query,
?string $fragment, // <- comma
) {
...
}
}Metadata
Metadata
Assignees
Labels
PHP 8PHP 8 featuresPHP 8 features