Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F98992443
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
Sat, Jan 18, 07:38
Size
614 B
Mime Type
text/x-php
Expires
Mon, Jan 20, 07:38 (1 d, 21 h)
Engine
blob
Format
Raw Data
Handle
23682800
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