コード例 #1
0
 protected function beforeValidate()
 {
     $this->source = $this->port;
     return parent::beforeValidate();
 }
コード例 #2
0
 protected function beforeValidate()
 {
     // "tcp" (or other protocol name) should be in lower case.
     $this->source = $this->protocol . ':' . $this->address . ':' . $this->port;
     return parent::beforeValidate();
 }