From 56945052a1df579cef3fb63a0554ebd1493b1928 Mon Sep 17 00:00:00 2001 From: Wolfy-J Date: Wed, 16 Dec 2020 16:31:05 +0300 Subject: [PATCH] - link to WorkerAwareInterface --- src/HttpWorkerInterface.php | 2 ++ src/PSR7WorkerInterface.php | 1 + src/WorkerAwareInterface.php | 21 --------------------- 3 files changed, 3 insertions(+), 21 deletions(-) delete mode 100644 src/WorkerAwareInterface.php diff --git a/src/HttpWorkerInterface.php b/src/HttpWorkerInterface.php index b3dc052..52a5d7b 100644 --- a/src/HttpWorkerInterface.php +++ b/src/HttpWorkerInterface.php @@ -8,6 +8,8 @@ namespace Spiral\RoadRunner\Http; +use Spiral\RoadRunner\WorkerAwareInterface; + interface HttpWorkerInterface extends WorkerAwareInterface { /** diff --git a/src/PSR7WorkerInterface.php b/src/PSR7WorkerInterface.php index 52c01f8..8d73d81 100644 --- a/src/PSR7WorkerInterface.php +++ b/src/PSR7WorkerInterface.php @@ -10,6 +10,7 @@ use Psr\Http\Message\ResponseInterface; use Psr\Http\Message\ServerRequestInterface; +use Spiral\RoadRunner\WorkerAwareInterface; interface PSR7WorkerInterface extends WorkerAwareInterface { diff --git a/src/WorkerAwareInterface.php b/src/WorkerAwareInterface.php deleted file mode 100644 index ff0f1e0..0000000 --- a/src/WorkerAwareInterface.php +++ /dev/null @@ -1,21 +0,0 @@ -