decouple from potter/template

This commit is contained in:
2026-03-21 09:45:26 -04:00
parent d494507861
commit 1c1eae0ea3
2 changed files with 2 additions and 5 deletions

View File

@@ -19,7 +19,6 @@
}, },
"minimum-stability": "stable", "minimum-stability": "stable",
"require": { "require": {
"php": "^8.3", "php": "^8.3"
"potter/template": "^1.0"
} }
} }

View File

@@ -4,9 +4,7 @@ declare(strict_types=1);
namespace Potter\Cloneable; namespace Potter\Cloneable;
use \Potter\Template\TemplateInterface; interface CloneableInterface
interface CloneableInterface extends TemplateInterface
{ {
public function clone(): static; public function clone(): static;
public function __clone(): void; public function __clone(): void;