13 lines
225 B
PHP
13 lines
225 B
PHP
<?php
|
|
|
|
namespace App\Interface\Test\Proxy;
|
|
|
|
interface DatabaseQueryInterface
|
|
{
|
|
/**
|
|
* 数据库查询接口
|
|
* @param string $query
|
|
* @return array
|
|
*/
|
|
public function execute(string $query): array;
|
|
} |