Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
31 | 5 | public static function create($accessToken = '') |
|
32 | { |
||
33 | 5 | $client = ClientFactory::create(); |
|
34 | 5 | $responseTransformer = new ArrayBodyTransformer(); |
|
35 | 5 | $apiExceptionTransformer = new GuzzleTransformer(); |
|
36 | |||
37 | 5 | return new Api($client, $responseTransformer, $apiExceptionTransformer, $accessToken); |
|
38 | } |
||
39 | } |
||
40 |