Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F120161464
PhabricatorMetaMTAActor.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Wed, Jul 2, 09:17
Size
868 B
Mime Type
text/x-php
Expires
Fri, Jul 4, 09:17 (2 d)
Engine
blob
Format
Raw Data
Handle
27149902
Attached To
rPH Phabricator
PhabricatorMetaMTAActor.php
View Options
<?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
;
}
}
Event Timeline
Log In to Comment