13 lines
147 B
PHP
13 lines
147 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Server\SInterface;
|
||
|
|
|
||
|
|
use Swoole\Http\Response;
|
||
|
|
|
||
|
|
interface OnDownloadInterface
|
||
|
|
{
|
||
|
|
|
||
|
|
public function dispatch(Response $response);
|
||
|
|
|
||
|
|
}
|