getKana02() public method

Get kana02
public getKana02 ( ) : string
return string
Example #1
0
 /**
  * CustomerAddress から個人情報を設定.
  * 
  * @param \Eccube\Entity\CustomerAddress $CustomerAddress
  * @return \Eccube\Entity\Shipping
  */
 public function setFromCustomerAddress(CustomerAddress $CustomerAddress)
 {
     $this->setName01($CustomerAddress->getName01())->setName02($CustomerAddress->getName02())->setKana01($CustomerAddress->getKana01())->setKana02($CustomerAddress->getKana02())->setCompanyName($CustomerAddress->getCompanyName())->setTel01($CustomerAddress->getTel01())->setTel02($CustomerAddress->getTel02())->setTel03($CustomerAddress->getTel03())->setFax01($CustomerAddress->getFax01())->setFax02($CustomerAddress->getFax02())->setFax03($CustomerAddress->getFax03())->setZip01($CustomerAddress->getZip01())->setZip02($CustomerAddress->getZip02())->setZipCode($CustomerAddress->getZip01() . $CustomerAddress->getZip02())->setPref($CustomerAddress->getPref())->setAddr01($CustomerAddress->getAddr01())->setAddr02($CustomerAddress->getAddr02());
     return $this;
 }