File tree Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -312,7 +312,12 @@ public function delete($requestUri)
312
312
* @param string $requestUri
313
313
* @param mixed $body
314
314
*
315
- * @return IODataRequest
315
+ * @return If $entityReturnType === 'stream': GuzzleHttp\Psr7\Response
316
+ * Otherwise: array with two values
317
+ * - First value: array of objects
318
+ * .. of class $entityReturnType if $entityReturnType !== false
319
+ * .. of class ODataResponse if $entityReturnType === false
320
+ * - Second value: string containing the "next link" URL
316
321
*
317
322
* @throws ODataException
318
323
*/
Original file line number Diff line number Diff line change @@ -213,9 +213,12 @@ public function setTimeout($timeout)
213
213
*
214
214
* @throws ODataException if response is invalid
215
215
*
216
- * @return array array of objects
217
- * of class $returnType if $returnType !== false
218
- * of class ODataResponse if $returnType === false
216
+ * @return If $returnType === 'stream': GuzzleHttp\Psr7\Response
217
+ * Otherwise: array with two values
218
+ * - First value: array of objects
219
+ * .. of class $returnType if $returnType !== false
220
+ * .. of class ODataResponse if $returnType === false
221
+ * - Second value: string containing the "next link" URL
219
222
*/
220
223
public function execute ()
221
224
{
You can’t perform that action at this time.
0 commit comments