Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F111817645
PhabricatorMailSMSMessage.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
Mon, May 5, 06:18
Size
614 B
Mime Type
text/x-php
Expires
Wed, May 7, 06:18 (1 d, 13 h)
Engine
blob
Format
Raw Data
Handle
25984174
Attached To
rPH Phabricator
PhabricatorMailSMSMessage.php
View Options
<?php
final
class
PhabricatorMailSMSMessage
extends
PhabricatorMailExternalMessage
{
const
MESSAGETYPE
=
'sms'
;
private
$toNumber
;
private
$textBody
;
public
function
newMailMessageEngine
()
{
return
new
PhabricatorMailSMSEngine
();
}
public
function
setToNumber
(
PhabricatorPhoneNumber
$to_number
)
{
$this
->
toNumber
=
$to_number
;
return
$this
;
}
public
function
getToNumber
()
{
return
$this
->
toNumber
;
}
public
function
setTextBody
(
$text_body
)
{
$this
->
textBody
=
$text_body
;
return
$this
;
}
public
function
getTextBody
()
{
return
$this
->
textBody
;
}
}
Event Timeline
Log In to Comment