Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F108051257
PhabricatorEditor.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
Sun, Apr 13, 16:01
Size
727 B
Mime Type
text/x-php
Expires
Tue, Apr 15, 16:01 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25252401
Attached To
rPH Phabricator
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
;
}
}
Event Timeline
Log In to Comment