GetCustomerProfileIdsRequest::attachData()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 1
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 0
c 0
b 0
f 0
nc 1
nop 1
dl 0
loc 2
ccs 1
cts 1
cp 1
crap 1
rs 10
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