Skip to content

Commit d3fb4cc

Browse files
committed
Merge branch 'gajdaw-add-missing-return-statement-in-iSendARequestToWithBody'
2 parents 977fa9e + d6c4f27 commit d3fb4cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Context/RestContext.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public function iSendARequestToWithParameters($method, $url, TableNode $datas)
7171
*/
7272
public function iSendARequestToWithBody($method, $url, PyStringNode $body)
7373
{
74-
$this->iSendARequestTo($method, $url, $body);
74+
return $this->iSendARequestTo($method, $url, $body);
7575
}
7676

7777
/**

0 commit comments

Comments
 (0)