This commit is contained in:
2023-04-16 01:24:30 +08:00
parent bf9b84563e
commit 91af6b3a5f
68 changed files with 115 additions and 79 deletions
+1
View File
@@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace Kiri\Router\Aspect;
+1
View File
@@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace Kiri\Router\Aspect;
+1
View File
@@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace Kiri\Router\Aspect;
+1
View File
@@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace Kiri\Router\Aspect;
-25
View File
@@ -1,25 +0,0 @@
<?php
namespace Kiri\Router\Aspect;
class TestAspect extends AbstractsAspect
{
/**
* @param OnJoinPointInterface $joinPoint
* @return mixed
*/
public function process(OnJoinPointInterface $joinPoint): mixed
{
$result = $joinPoint->process();
var_dump('111');
return $result;
}
}