summaryrefslogtreecommitdiff
path: root/tests/echo.php
diff options
context:
space:
mode:
authorAnton Titov <[email protected]>2021-02-18 16:44:10 +0300
committerGitHub <[email protected]>2021-02-18 16:44:10 +0300
commit546b350a35b35af9eecb61aab5f7bcbbaffd449f (patch)
tree836548aafc26bbc02471f0f30ff86a29c2696338 /tests/echo.php
parent29f0d9e0da51f8c98c8d01e260eccfacf1072c01 (diff)
fix(php): PHP tests to use latest signatures (#550)
Diffstat (limited to 'tests/echo.php')
-rw-r--r--tests/echo.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/echo.php b/tests/echo.php
index 83eec92e..64510465 100644
--- a/tests/echo.php
+++ b/tests/echo.php
@@ -10,7 +10,7 @@ $rr = new RoadRunner\Worker($relay);
while ($in = $rr->waitPayload()) {
try {
- $rr->send((string)$in->body);
+ $rr->respond(new RoadRunner\Payload((string)$in->body));
} catch (\Throwable $e) {
$rr->error((string)$e);
}