summaryrefslogtreecommitdiff
path: root/tests/head.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/head.php')
-rw-r--r--tests/head.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/head.php b/tests/head.php
new file mode 100644
index 00000000..4f4e4061
--- /dev/null
+++ b/tests/head.php
@@ -0,0 +1,17 @@
+<?php
+/**
+ * @var Goridge\RelayInterface $relay
+ */
+
+use Spiral\Goridge;
+use Spiral\RoadRunner;
+
+$rr = new RoadRunner\Worker($relay);
+
+while ($in = $rr->receive($ctx)) {
+ try {
+ $rr->send("", (string)$ctx);
+ } catch (\Throwable $e) {
+ $rr->error((string)$e);
+ }
+} \ No newline at end of file