line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
7
|
|
|
7
|
|
36
|
use strict; |
|
7
|
|
|
|
|
12
|
|
|
7
|
|
|
|
|
197
|
|
2
|
7
|
|
|
7
|
|
34
|
use warnings; |
|
7
|
|
|
|
|
65
|
|
|
7
|
|
|
|
|
221
|
|
3
|
7
|
|
|
7
|
|
5158
|
use MRO::Compat 'c3'; |
|
7
|
|
|
|
|
22751
|
|
|
7
|
|
|
|
|
407
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
package WebService::Shippo::Addresses; |
6
|
|
|
|
|
|
|
require WebService::Shippo::Address; |
7
|
7
|
|
|
|
|
3793
|
use base qw( |
8
|
|
|
|
|
|
|
WebService::Shippo::Collection |
9
|
|
|
|
|
|
|
WebService::Shippo::Create |
10
|
|
|
|
|
|
|
WebService::Shippo::Fetch |
11
|
7
|
|
|
7
|
|
50
|
); |
|
7
|
|
|
|
|
12
|
|
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
sub collection_class () { __PACKAGE__ } |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
sub item_class () { 'WebService::Shippo::Address' } |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
BEGIN { |
18
|
7
|
|
|
7
|
|
38
|
no warnings 'once'; |
|
7
|
|
|
|
|
11
|
|
|
7
|
|
|
|
|
211
|
|
19
|
7
|
|
|
7
|
|
127
|
*Shippo::Addresses:: = *WebService::Shippo::Addresses::; |
20
|
|
|
|
|
|
|
} |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
1; |
23
|
|
|
|
|
|
|
__END__ |