<slide>
<title>Typed Properties</title>

<example result="1">
&lt;?php
class 🥃whisky
{
    public    string     $name;
    public    int        $age;
    private   Distillery $distillery;
}

$whisky = new 🥃whisky;
$whisky->age = "29";

var_dump($whisky);
?>
</example>
<break/>

<div effect="fade-in">
<blurb class="centre">Type-coercion when %strict_types=0%</blurb>
</div>
</slide>
