diff options
author | Anton Titov <[email protected]> | 2021-02-18 16:44:10 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2021-02-18 16:44:10 +0300 |
commit | 546b350a35b35af9eecb61aab5f7bcbbaffd449f (patch) | |
tree | 836548aafc26bbc02471f0f30ff86a29c2696338 /tests/plugins/server | |
parent | 29f0d9e0da51f8c98c8d01e260eccfacf1072c01 (diff) |
fix(php): PHP tests to use latest signatures (#550)
Diffstat (limited to 'tests/plugins/server')
-rw-r--r-- | tests/plugins/server/socket.php | 2 | ||||
-rw-r--r-- | tests/plugins/server/tcp.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/plugins/server/socket.php b/tests/plugins/server/socket.php index 3159c445..f90dda6f 100644 --- a/tests/plugins/server/socket.php +++ b/tests/plugins/server/socket.php @@ -18,7 +18,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); } diff --git a/tests/plugins/server/tcp.php b/tests/plugins/server/tcp.php index 88c49848..873f25b2 100644 --- a/tests/plugins/server/tcp.php +++ b/tests/plugins/server/tcp.php @@ -13,7 +13,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); } |