Skip to content

Commit

Permalink
modify type
Browse files Browse the repository at this point in the history
  • Loading branch information
stelin committed Mar 23, 2018
1 parent c6c4c63 commit 101d6ac
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions src/Bootstrap/Listeners/Interfaces/FinishInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,16 @@
use Swoole\Server;

/**
*
*
* @uses FinishInterface
* @version 2018年01月10日
* @author stelin <[email protected]>
* @copyright Copyright 2010-2016 swoft software
* @license PHP Version 7.x {@link http://www.php.net/license/3_0.txt}
* FinishInterface
*/
interface FinishInterface
{
public function onFinish(Server $server, int $taskId, string $data);
/**
* @param Server $server
* @param int $taskId
* @param mixed $data
*
* @return mixed
*/
public function onFinish(Server $server, int $taskId, $data);
}

0 comments on commit 101d6ac

Please sign in to comment.