summaryrefslogtreecommitdiff
path: root/tests/sleep.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/sleep.php
parent29f0d9e0da51f8c98c8d01e260eccfacf1072c01 (diff)
fix(php): PHP tests to use latest signatures (#550)
Diffstat (limited to 'tests/sleep.php')
-rw-r--r--tests/sleep.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/sleep.php b/tests/sleep.php
index e34a6834..fb5c9df2 100644
--- a/tests/sleep.php
+++ b/tests/sleep.php
@@ -11,5 +11,5 @@ $rr = new RoadRunner(new StreamRelay(\STDIN, \STDOUT));
while($rr->waitPayload()){
sleep(3);
- $rr->send("");
+ $rr->respond(new \Spiral\RoadRunner\Payload(""));
}