Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92740980
PhabricatorApplicationTransactionValidationError.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, 08:05
Size
722 B
Mime Type
text/x-php
Expires
Mon, Nov 25, 08:05 (2 d)
Engine
blob
Format
Raw Data
Handle
22492892
Attached To
rPH Phabricator
PhabricatorApplicationTransactionValidationError.php
View Options
<?php
final
class
PhabricatorApplicationTransactionValidationError
extends
Phobject
{
private
$type
;
private
$transaction
;
private
$shortMessage
;
private
$message
;
public
function
__construct
(
$type
,
$short_message
,
$message
,
PhabricatorApplicationTransaction
$xaction
=
null
)
{
$this
->
type
=
$type
;
$this
->
shortMessage
=
$short_message
;
$this
->
message
=
$message
;
$this
->
transaction
=
$xaction
;
}
public
function
getType
()
{
return
$this
->
type
;
}
public
function
getTransaction
()
{
return
$this
->
tranaction
;
}
public
function
getShortMessage
()
{
return
$this
->
shortMessage
;
}
public
function
getMessage
()
{
return
$this
->
message
;
}
}
Event Timeline
Log In to Comment