RFC: https://wiki.php.net/rfc/constructor_promotion Example: ```php class Point { public function __construct( public float $x = 0.0, public float $y = 0.0, public float $z = 0.0, ) {} } ```