Completed
Push — develop ( 1d947e...a9d8b7 )
by Nate
05:38
created

ContactLists::getById()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 22

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 22
ccs 0
cts 18
cp 0
rs 9.568
c 0
b 0
f 0
cc 1
nc 1
nop 3
crap 2
1
<?php
2
3
namespace flipbox\hubspot\modules\http\services;
4
5
use flipbox\hubspot\authentication\AuthenticationStrategyInterface;
6
use flipbox\hubspot\cache\CacheStrategyInterface;
7
use Flipbox\Relay\HubSpot\Segment\ContactLists\Add;
8
use Flipbox\Relay\HubSpot\Segment\ContactLists\GetById;
9
use Flipbox\Relay\HubSpot\Segment\ContactLists\GetContacts;
10
use Flipbox\Relay\HubSpot\Segment\ContactLists\Remove;
11
use Psr\Http\Message\ResponseInterface;
12
13
class ContactLists extends AbstractResource
14
{
15
16
17
}
18