diff --git a/composer.json b/composer.json index 6a27a51..528d751 100644 --- a/composer.json +++ b/composer.json @@ -20,7 +20,6 @@ "minimum-stability": "stable", "require": { "php": "^8.3", - "potter/stringable": "^1.0", - "potter/template": "^1.0" + "potter/stringable": "^1.0" } } diff --git a/src/Potter/Throwable/ThrowableInterface.php b/src/Potter/Throwable/ThrowableInterface.php index 7bb4fce..fcd55d1 100644 --- a/src/Potter/Throwable/ThrowableInterface.php +++ b/src/Potter/Throwable/ThrowableInterface.php @@ -5,10 +5,9 @@ declare(strict_types=1); namespace Potter\Throwable; use \Potter\Stringable\StringableInterface; -use \Potter\Template\TemplateInterface; use \Throwable as BaseThrowable; -interface ThrowableInterface extends StringableInterface, TemplateInterface +interface ThrowableInterface extends StringableInterface { public function getMessage(): string; public function getCode(): int;