[ Index ] |
PHP Cross Reference of Phabricator |
[Summary view] [Print] [Text view]
1 <?php 2 3 final class PhabricatorMetaMTAActor { 4 5 private $phid; 6 private $emailAddress; 7 private $name; 8 private $reasons = array(); 9 10 public function setName($name) { 11 $this->name = $name; 12 return $this; 13 } 14 15 public function getName() { 16 return $this->name; 17 } 18 19 public function setEmailAddress($email_address) { 20 $this->emailAddress = $email_address; 21 return $this; 22 } 23 24 public function getEmailAddress() { 25 return $this->emailAddress; 26 } 27 28 public function setPHID($phid) { 29 $this->phid = $phid; 30 return $this; 31 } 32 33 public function getPHID() { 34 return $this->phid; 35 } 36 37 public function setUndeliverable($reason) { 38 $this->reasons[] = $reason; 39 return $this; 40 } 41 42 public function isDeliverable() { 43 return empty($this->reasons); 44 } 45 46 public function getUndeliverableReasons() { 47 return $this->reasons; 48 } 49 50 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Sun Nov 30 09:20:46 2014 | Cross-referenced by PHPXref 0.7.1 |