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/stop.php | |
parent | 29f0d9e0da51f8c98c8d01e260eccfacf1072c01 (diff) |
fix(php): PHP tests to use latest signatures (#550)
Diffstat (limited to 'tests/stop.php')
-rw-r--r-- | tests/stop.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/stop.php b/tests/stop.php index f83d3f29..93263821 100644 --- a/tests/stop.php +++ b/tests/stop.php @@ -18,7 +18,7 @@ while ($in = $rr->waitPayload()) { } $used = true; - $rr->send((string)getmypid()); + $rr->respond(new RoadRunner\Payload((string)getmypid())); } catch (\Throwable $e) { $rr->error((string)$e); } |