Page Menu
Home
GnuPG
Search
Configure Global Search
Log In
Files
F34768322
PhabricatorEditor.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Size
727 B
Subscribers
None
PhabricatorEditor.php
View Options
<?php
abstract
class
PhabricatorEditor
extends
Phobject
{
private
$actor
;
private
$excludeMailRecipientPHIDs
=
array
();
final
public
function
setActor
(
PhabricatorUser
$actor
)
{
$this
->
actor
=
$actor
;
return
$this
;
}
final
protected
function
getActor
()
{
return
$this
->
actor
;
}
final
protected
function
requireActor
()
{
$actor
=
$this
->
getActor
();
if
(!
$actor
)
{
throw
new
Exception
(
'You must setActor()!'
);
}
return
$actor
;
}
final
public
function
setExcludeMailRecipientPHIDs
(
$phids
)
{
$this
->
excludeMailRecipientPHIDs
=
$phids
;
return
$this
;
}
final
protected
function
getExcludeMailRecipientPHIDs
()
{
return
$this
->
excludeMailRecipientPHIDs
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Jan 25, 7:04 AM (1 d, 18 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
b0/36/61e4ce44290bcece82b12d32e7eb
Attached To
rPHAB Phabricator
Event Timeline
Log In to Comment