Completed
Push — develop ( b6cb2c...9ca58c )
by Jens
15:17 queued 07:08
created

ExtensionsEndpoint   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\Extensions;
6
7
use Commercetools\Core\Client\JsonEndpoint;
8
9
class ExtensionsEndpoint
10
{
11
    /**
12
     * @return JsonEndpoint
13
     */
14 4
    public static function endpoint()
15
    {
16 4
        return new JsonEndpoint('extensions');
17
    }
18
}
19