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