コード例 #1
0
ファイル: ResourceRecord.php プロジェクト: surjit/DNS
 /**
  * @return string
  */
 public function getType()
 {
     if (null === $this->rdata) {
         return;
     }
     return $this->rdata->getType();
 }
コード例 #2
0
ファイル: ResourceRecord.php プロジェクト: Amrit01/DNS
 /**
  * @return string
  */
 public function getType()
 {
     return $this->rdata->getType();
 }