<?php class Greeter { public string $name; public function greet(): string { return "Hello, " . $this->name . "!"; } } $g = new Greeter(); $g->name = "Ada"; echo $g->greet(); // Hello, Ada! ?>
Click Run to execute this code.