16 lines
313 B
PHP
16 lines
313 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\JsonRpc;
|
||
|
|
||
|
use Hyperf\HttpServer\Contract\RequestInterface;
|
||
|
|
||
|
interface PunchCardSystemExternalServiceInterface
|
||
|
{
|
||
|
/**
|
||
|
* 保存问题反馈
|
||
|
*
|
||
|
* @param RequestInterface $request
|
||
|
* @return array
|
||
|
*/
|
||
|
public function saveFeedback(RequestInterface $request) : array;
|
||
|
}
|