feat : Decorator Aop

This commit is contained in:
2025-09-06 23:53:15 +08:00
parent aaa394a2a7
commit dfbb4b73ae
9 changed files with 195 additions and 9 deletions

View File

@@ -0,0 +1,13 @@
<?php
namespace App\Interface\Test\Decorator;
interface UserServiceInterface
{
/**
* 获取用户信息的接口
* @param int $userId
* @return array
*/
public function getUserInfo(int $userId): array;
}