Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102523450
PhabricatorApplicationTransactionNoEffectException.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
Fri, Feb 21, 15:19
Size
867 B
Mime Type
text/x-php
Expires
Sun, Feb 23, 15:19 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24275390
Attached To
rPH Phabricator
PhabricatorApplicationTransactionNoEffectException.php
View Options
<?php
final
class
PhabricatorApplicationTransactionNoEffectException
extends
Exception
{
private
$transactions
;
private
$anyEffect
;
private
$hasComment
;
public
function
__construct
(
array
$transactions
,
$any_effect
,
$has_comment
)
{
assert_instances_of
(
$transactions
,
'PhabricatorApplicationTransaction'
);
$this
->
transactions
=
$transactions
;
$this
->
anyEffect
=
$any_effect
;
$message
=
array
();
$message
[]
=
'Transactions have no effect:'
;
foreach
(
$this
->
transactions
as
$transaction
)
{
$message
[]
=
' - '
.
$transaction
->
getNoEffectDescription
();
}
parent
::
__construct
(
implode
(
"
\n
"
,
$message
));
}
public
function
getTransactions
()
{
return
$this
->
transactions
;
}
public
function
hasAnyEffect
()
{
return
$this
->
anyEffect
;
}
public
function
hasComment
()
{
return
$this
->
hasComment
;
}
}
Event Timeline
Log In to Comment