<?php

// regular constructor syntax
class Dog {
    public string $name;
    public function __construct(string $name) {
        $this->name = $name;
    }   
}

// constructor promotion syntax, same result as above
class Dog2 {
    public function __construct(public string $name) {     
    }   
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: