mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-14 10:52:41 +01:00
51 lines
868 B
PHP
51 lines
868 B
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorMetaMTAActor {
|
||
|
|
||
|
private $phid;
|
||
|
private $emailAddress;
|
||
|
private $name;
|
||
|
private $reasons = array();
|
||
|
|
||
|
public function setName($name) {
|
||
|
$this->name = $name;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function getName() {
|
||
|
return $this->name;
|
||
|
}
|
||
|
|
||
|
public function setEmailAddress($email_address) {
|
||
|
$this->emailAddress = $email_address;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function getEmailAddress() {
|
||
|
return $this->emailAddress;
|
||
|
}
|
||
|
|
||
|
public function setPHID($phid) {
|
||
|
$this->phid = $phid;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function getPHID() {
|
||
|
return $this->phid;
|
||
|
}
|
||
|
|
||
|
public function setUndeliverable($reason) {
|
||
|
$this->reasons[] = $reason;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function isDeliverable() {
|
||
|
return empty($this->reasons);
|
||
|
}
|
||
|
|
||
|
public function getUndeliverableReasons() {
|
||
|
return $this->reasons;
|
||
|
}
|
||
|
|
||
|
}
|