Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F112345116
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
Sat, May 10, 03:52
Size
868 B
Mime Type
text/x-php
Expires
Mon, May 12, 03:52 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
26068411
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