Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92735404
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
Sat, Nov 23, 06:43
Size
930 B
Mime Type
text/x-php
Expires
Mon, Nov 25, 06:43 (2 d)
Engine
blob
Format
Raw Data
Handle
22501145
Attached To
rPH Phabricator
HeraldEffect.php
View Options
<?php
final
class
HeraldEffect
{
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