Skip to content

Commit

Permalink
Add namespace to method_intercept.php and remove unused use statement
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
koriym committed Jul 7, 2024
1 parent e17771f commit b485b95
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src-mock/method_intercept.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

namespace Ray\Aop;

if (! function_exists('method_intercept')) {
/**
* @return mixed
Expand Down
1 change: 0 additions & 1 deletion src/Aspect.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

namespace Ray\Aop;

use MethodInterceptorInterface;
use RecursiveDirectoryIterator;
use RecursiveIteratorIterator;
use ReflectionClass;
Expand Down

0 comments on commit b485b95

Please sign in to comment.