Mega Code Archive

 
Categories / Php / Class
 

Bird class

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