* @return string
*/
public function getToString() {
- if (!empty($this->to)) return implode(', ', $this->to);
- else return '';
+ return implode(', ', $this->to);
}
/**
* @return string
*/
public function getCCString() {
- if (!empty($this->cc)) return implode(', ', $this->cc);
- else return '';
+ return implode(', ', $this->cc);
}
/**
* @return string
*/
public function getBCCString() {
- if (!empty($this->bcc)) return implode(', ', $this->bcc);
- else return '';
+ return implode(', ', $this->bcc);
}
/**