From b485b957c157ef566ddea053f80919977d03c615 Mon Sep 17 00:00:00 2001 From: Akihito Koriyama Date: Sun, 7 Jul 2024 13:02:02 +0900 Subject: [PATCH] Add namespace to method_intercept.php and remove unused use statement The namespace Ray\Aop was added to the method_intercept.php file to align it with the rest of the project's structure. Additionally, an unused use statement referencing MethodInterceptorInterface was removed from Aspect.php to clean up the code. --- src-mock/method_intercept.php | 2 ++ src/Aspect.php | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src-mock/method_intercept.php b/src-mock/method_intercept.php index 1da6b3fe..d63a3140 100644 --- a/src-mock/method_intercept.php +++ b/src-mock/method_intercept.php @@ -1,5 +1,7 @@