Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F549300
PhabricatorTransactionChange.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
942 B
Referenced Files
None
Subscribers
None
PhabricatorTransactionChange.php
View Options
<?php
abstract
class
PhabricatorTransactionChange
extends
Phobject
{
private
$transaction
;
private
$metadata
=
array
();
private
$oldValue
;
private
$newValue
;
final
public
function
setTransaction
(
PhabricatorApplicationTransaction
$xaction
)
{
$this
->
transaction
=
$xaction
;
return
$this
;
}
final
public
function
getTransaction
()
{
return
$this
->
transaction
;
}
final
public
function
setOldValue
(
$old_value
)
{
$this
->
oldValue
=
$old_value
;
return
$this
;
}
final
public
function
getOldValue
()
{
return
$this
->
oldValue
;
}
final
public
function
setNewValue
(
$new_value
)
{
$this
->
newValue
=
$new_value
;
return
$this
;
}
final
public
function
getNewValue
()
{
return
$this
->
newValue
;
}
final
public
function
setMetadata
(
array
$metadata
)
{
$this
->
metadata
=
$metadata
;
return
$this
;
}
final
public
function
getMetadata
()
{
return
$this
->
metadata
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 2:05 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
107290
Default Alt Text
PhabricatorTransactionChange.php (942 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment