Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96286307
HeraldEffect.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
Tue, Dec 24, 13:44
Size
947 B
Mime Type
text/x-php
Expires
Thu, Dec 26, 13:44 (2 d)
Engine
blob
Format
Raw Data
Handle
23150763
Attached To
rPH Phabricator
HeraldEffect.php
View Options
<?php
final
class
HeraldEffect
extends
Phobject
{
private
$objectPHID
;
private
$action
;
private
$target
;
private
$rule
;
private
$reason
;
public
function
setObjectPHID
(
$object_phid
)
{
$this
->
objectPHID
=
$object_phid
;
return
$this
;
}
public
function
getObjectPHID
()
{
return
$this
->
objectPHID
;
}
public
function
setAction
(
$action
)
{
$this
->
action
=
$action
;
return
$this
;
}
public
function
getAction
()
{
return
$this
->
action
;
}
public
function
setTarget
(
$target
)
{
$this
->
target
=
$target
;
return
$this
;
}
public
function
getTarget
()
{
return
$this
->
target
;
}
public
function
setRule
(
HeraldRule
$rule
)
{
$this
->
rule
=
$rule
;
return
$this
;
}
public
function
getRule
()
{
return
$this
->
rule
;
}
public
function
setReason
(
$reason
)
{
$this
->
reason
=
$reason
;
return
$this
;
}
public
function
getReason
()
{
return
$this
->
reason
;
}
}
Event Timeline
Log In to Comment