Total Complexity | 3 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Coverage | 75% |
Changes | 0 |
1 | <?php |
||
8 | class MessageRequestBuilder |
||
9 | { |
||
10 | |||
11 | /** |
||
12 | * @link https://docs.commercetools.com/http-api-projects-messages.html#get-message-by-id |
||
13 | * @param string $id |
||
14 | * @return MessageByIdGetRequest |
||
15 | */ |
||
16 | 1 | public function getById($id) |
|
20 | } |
||
21 | |||
22 | /** |
||
23 | * @link https://docs.commercetools.com/http-api-projects-messages.html#query-messages |
||
24 | * |
||
25 | * @return MessageQueryRequest |
||
26 | */ |
||
27 | 1 | public function query() |
|
31 | } |
||
32 | |||
33 | /** |
||
34 | * @return MessageRequestBuilder |
||
35 | */ |
||
36 | public function of() |
||
41 |