Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F4852636
PhabricatorApplicationTransactionValidationError.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
993 B
Referenced Files
None
Subscribers
None
PhabricatorApplicationTransactionValidationError.php
View Options
<?php
final
class
PhabricatorApplicationTransactionValidationError
extends
Phobject
{
private
$type
;
private
$transaction
;
private
$shortMessage
;
private
$message
;
private
$isMissingFieldError
;
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
->
transaction
;
}
public
function
getShortMessage
(
)
{
return
$this
->
shortMessage
;
}
public
function
getMessage
(
)
{
return
$this
->
message
;
}
public
function
setIsMissingFieldError
(
$is_missing_field_error
)
{
$this
->
isMissingFieldError
=
$is_missing_field_error
;
return
$this
;
}
public
function
getIsMissingFieldError
(
)
{
return
$this
->
isMissingFieldError
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, Jun 9, 06:45 (1 h, 36 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1756298
Default Alt Text
PhabricatorApplicationTransactionValidationError.php (993 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment