Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F8898378
PhabricatorEditor.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
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
public
function
getActor
()
{
return
$this
->
actor
;
}
final
public
function
requireActor
()
{
$actor
=
$this
->
getActor
();
if
(!
$actor
)
{
throw
new
PhutilInvalidStateException
(
'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
Fri, Jun 11, 7:10 PM (1 d, 23 h)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
3393039
Default Alt Text
PhabricatorEditor.php (727 B)
Attached To
rP Phabricator
Event Timeline
Log In to Comment