Passed
Push — develop ( 5aeb9c...e255e4 )
by Jens
10:37 queued 13s
created

ApiClientsEndpoint   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A endpoint() 0 3 1
1
<?php
2
/**
3
 */
4
5
namespace Commercetools\Core\Request\ApiClients;
6
7
use Commercetools\Core\Client\JsonEndpoint;
8
9
/**
10
 * @package Commercetools\Core\Request\ApiClients
11
 */
12
class ApiClientsEndpoint
13
{
14
    /**
15
     * @return JsonEndpoint
16
     */
17 4
    public static function endpoint()
18
    {
19 4
        return new JsonEndpoint('api-clients');
20
    }
21
}
22