コード例 #1
0
ファイル: Consumer.php プロジェクト: bebetojefry/symfony-2
 /**
  * Constructor
  */
 public function __construct($fname = '', $lname = '', $gender = '')
 {
     $this->setFirstname($fname);
     $this->setLastname($lname);
     $this->setGender($gender);
     parent::__construct();
 }