feat : Proxy Subject and Database

This commit is contained in:
2025-09-07 11:37:13 +08:00
parent 7d489eecc4
commit 14ba4674ee
11 changed files with 367 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<?php
namespace App\Interface\Test\Proxy;
interface DatabaseQueryInterface
{
/**
* 数据库查询接口
* @param string $query
* @return array
*/
public function execute(string $query): array;
}