These examples were done with php 8, if you need to test it in previous versions, you will need to change the constructs from this:
public function __construct(private $state = 'Sunny')
{
}
to this:
private $state = 'Sunny';
public function __construct($state)
{
$this->state = $state;
}
From the example directory
php index.php