From da625887987f1ec07a6f811e7259a0936e1bcb5f Mon Sep 17 00:00:00 2001 From: jay Date: Sun, 14 Jun 2026 12:20:38 -0400 Subject: [PATCH] de-inherit potter/resource --- composer.json | 3 +-- src/Potter/Stream/StreamInterface.php | 4 +--- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index 2d474a2..185fda8 100644 --- a/composer.json +++ b/composer.json @@ -12,8 +12,7 @@ "potter/rewindable": "^0.0.1", "potter/stringable": "^0.0.1", "potter/writeable": "^0.0.1", - "potter/readable": "^0.0.1", - "potter/resource": "^0.0.1" + "potter/readable": "^0.0.1" }, "license": "MIT", "autoload": { diff --git a/src/Potter/Stream/StreamInterface.php b/src/Potter/Stream/StreamInterface.php index 46aca9a..cff3c07 100644 --- a/src/Potter/Stream/StreamInterface.php +++ b/src/Potter/Stream/StreamInterface.php @@ -13,12 +13,10 @@ use \Potter\Detachable\DetachableInterface; use \Potter\Readable\ReadableInterface; use \Potter\Writeable\WriteableInterface; -use \Potter\Resource\ResourceInterface; - use \Psr\Http\Message\StreamInterface as PsrStreamInterface; interface StreamInterface extends PsrStreamInterface, StringableInterface, - ReadableInterface, WriteableInterface, ResourceInterface, + ReadableInterface, WriteableInterface, CloseableInterface, DetachableInterface, RewindableInterface, SeekableInterface {