Passed
Push — master ( 0d508a...6e2a06 )
by Jens
16:22 queued 10s
created

OrderEditsEndpoint::endpoint()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 3
c 0
b 0
f 0
ccs 2
cts 2
cp 1
rs 10
cc 1
nc 1
nop 0
crap 1
1
<?php
2
/**
3
 */
4
5
namespace Commercetools\Core\Request\OrderEdits;
6
7
use Commercetools\Core\Client\JsonEndpoint;
8
9
/**
10
 * @package Commercetools\Core\Request\OrderEdits
11
 */
12
class OrderEditsEndpoint
13
{
14
    /**
15
     * @return JsonEndpoint
16
     */
17 86
    public static function endpoint()
18
    {
19 86
        return new JsonEndpoint('orders/edits');
20
    }
21
}
22