Bird class
<?php class Bird { function __construct($name, $breed){ $this->name = $name; $this->breed = $breed; } } ?>