Answers for "'constructor property promotion php"

PHP
0

php 8 constructor property promotion

class CustomerDTO
{
    public function __construct(
        public string $name, 
        public string $email, 
        public DateTimeImmutable $birth_date,
    ) {}
}
Posted by: Guest on December-22-2021

Code answers related to "'constructor property promotion php"

Browse Popular Code Answers by Language