From 707d8cdfca1591328e6c8944f10cf68b0f190c62 Mon Sep 17 00:00:00 2001 From: Jay Potter Date: Sun, 14 Jun 2026 11:41:27 -0400 Subject: [PATCH] missing use statement --- src/Potter/Aware/Aware.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Potter/Aware/Aware.php b/src/Potter/Aware/Aware.php index f513a34..cff998c 100644 --- a/src/Potter/Aware/Aware.php +++ b/src/Potter/Aware/Aware.php @@ -4,6 +4,8 @@ declare(strict_types=1); namespace Potter\Aware; +use \Potter\Cloneable\CloneableTrait; + abstract class Aware extends AbstractAware { use AwareTrait, CloneableTrait;