Class Php

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

?>