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, 0 insertions, 17 deletions
diff --git a/tests/head.php b/tests/head.php
deleted file mode 100644
index 80733166..00000000
--- a/tests/head.php
+++ /dev/null
@@ -1,17 +0,0 @@
-<?php
-/**
- * @var Goridge\RelayInterface $relay
- */
-
-use Spiral\Goridge;
-use Spiral\RoadRunner;
-
-$rr = new RoadRunner\Worker($relay);
-
-while ($in = $rr->waitPayload()) {
- try {
- $rr->respond(new RoadRunner\Payload("", (string)$in->header));
- } catch (\Throwable $e) {
- $rr->error((string)$e);
- }
-}