line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package WWW::BigDoor::NamedTransaction; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
4751
|
use strict; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
63
|
|
4
|
1
|
|
|
1
|
|
6
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
229
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
#use Smart::Comments -ENV; |
7
|
|
|
|
|
|
|
|
8
|
1
|
|
|
1
|
|
7
|
use base qw(WWW::BigDoor::Resource Class::Accessor); |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
297
|
|
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
__PACKAGE__->follow_best_practice; |
11
|
|
|
|
|
|
|
__PACKAGE__->mk_accessors( |
12
|
|
|
|
|
|
|
qw(id read_only currency currency_id amount default_amount is_source variable_amount_allowed named_good vendor_publisher_title attributes notifiable_event) |
13
|
|
|
|
|
|
|
); |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
1; |
16
|
|
|
|
|
|
|
__END__ |