GetCustomerProfileIdsRequest   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
eloc 1
c 0
b 0
f 0
dl 0
loc 4
ccs 1
cts 1
cp 1
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A attachData() 0 2 1
1
<?php
2
3
namespace CommerceGuys\AuthNet;
4
5
use CommerceGuys\AuthNet\Request\RequestInterface;
6
7
/**
8
 * Retrieve all existing customer profile IDs.
9
 *
10
 * @link http://developer.authorize.net/api/reference/index.html#customer-profiles-get-customer-profile-ids
11
 */
12
class GetCustomerProfileIdsRequest extends BaseApiRequest
13
{
14 1
    protected function attachData(RequestInterface $request)
15
    {
16
        // TODO: Implement attachData() method.
17 1
    }
18
}
19