@@ -7,7 +7,7 @@ discard block |
||
| 7 | 7 | { |
| 8 | 8 | /** |
| 9 | 9 | * @param array $deal Array of deal properties. |
| 10 | - * @return mixed |
|
| 10 | + * @return \Psr\Http\Message\ResponseInterface |
|
| 11 | 11 | * @throws HubSpotException |
| 12 | 12 | */ |
| 13 | 13 | function create(array $deal) |
@@ -22,7 +22,7 @@ discard block |
||
| 22 | 22 | /** |
| 23 | 23 | * @param int $id The deal id. |
| 24 | 24 | * @param array $deal The deal properties to update. |
| 25 | - * @return mixed |
|
| 25 | + * @return \Psr\Http\Message\ResponseInterface |
|
| 26 | 26 | */ |
| 27 | 27 | function update($id, array $deal) |
| 28 | 28 | { |
@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | |
| 51 | 51 | /** |
| 52 | 52 | * @param int $id |
| 53 | - * @return mixed |
|
| 53 | + * @return \Psr\Http\Message\ResponseInterface |
|
| 54 | 54 | */ |
| 55 | 55 | function delete($id) |
| 56 | 56 | { |
@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | |
| 62 | 62 | /** |
| 63 | 63 | * @param array $params Optional parameters ['limit', 'offset'] |
| 64 | - * @return mixed |
|
| 64 | + * @return \Psr\Http\Message\ResponseInterface |
|
| 65 | 65 | */ |
| 66 | 66 | function getRecentlyModified(array $params = []) |
| 67 | 67 | { |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | |
| 74 | 74 | /** |
| 75 | 75 | * @param array $params Optional parameters ['limit', 'offset'] |
| 76 | - * @return mixed |
|
| 76 | + * @return \Psr\Http\Message\ResponseInterface |
|
| 77 | 77 | */ |
| 78 | 78 | function getRecentlyCreated(array $params = []) |
| 79 | 79 | { |
@@ -85,7 +85,7 @@ discard block |
||
| 85 | 85 | |
| 86 | 86 | /** |
| 87 | 87 | * @param int $id |
| 88 | - * @return mixed |
|
| 88 | + * @return \Psr\Http\Message\ResponseInterface |
|
| 89 | 89 | */ |
| 90 | 90 | function getById($id) |
| 91 | 91 | { |
@@ -97,7 +97,7 @@ discard block |
||
| 97 | 97 | /** |
| 98 | 98 | * @param int $dealId |
| 99 | 99 | * @param int|int[] $companyIds |
| 100 | - * @return mixed |
|
| 100 | + * @return \Psr\Http\Message\ResponseInterface |
|
| 101 | 101 | */ |
| 102 | 102 | function associateWithCompany($dealId, $companyIds) |
| 103 | 103 | { |
@@ -111,7 +111,7 @@ discard block |
||
| 111 | 111 | /** |
| 112 | 112 | * @param int $dealId |
| 113 | 113 | * @param int|int[] $companyIds |
| 114 | - * @return mixed |
|
| 114 | + * @return \Psr\Http\Message\ResponseInterface |
|
| 115 | 115 | */ |
| 116 | 116 | function disassociateFromCompany($dealId, $companyIds) |
| 117 | 117 | { |
@@ -125,7 +125,7 @@ discard block |
||
| 125 | 125 | /** |
| 126 | 126 | * @param int $dealId |
| 127 | 127 | * @param int|int[] $contactIds |
| 128 | - * @return mixed |
|
| 128 | + * @return \Psr\Http\Message\ResponseInterface |
|
| 129 | 129 | */ |
| 130 | 130 | function associateWithContact($dealId, $contactIds) |
| 131 | 131 | { |
@@ -139,7 +139,7 @@ discard block |
||
| 139 | 139 | /** |
| 140 | 140 | * @param int $contactId |
| 141 | 141 | * @param array $params Optional parameters ['limit', 'offset'] |
| 142 | - * @return mixed |
|
| 142 | + * @return \Psr\Http\Message\ResponseInterface |
|
| 143 | 143 | */ |
| 144 | 144 | function associatedWithContact($contactId, array $params = []) |
| 145 | 145 | { |
@@ -153,7 +153,7 @@ discard block |
||
| 153 | 153 | /** |
| 154 | 154 | * @param int $dealId |
| 155 | 155 | * @param int|int[] $contactIds |
| 156 | - * @return mixed |
|
| 156 | + * @return \Psr\Http\Message\ResponseInterface |
|
| 157 | 157 | */ |
| 158 | 158 | function disassociateFromContact($dealId, $contactIds) |
| 159 | 159 | { |