Files
think-worker/src/contract/ResetterInterface.php
2026-01-06 13:37:07 +08:00

18 lines
299 B
PHP

<?php
namespace think\worker\contract;
use think\App;
use think\worker\Sandbox;
interface ResetterInterface
{
/**
* "handle" function for resetting app.
*
* @param \think\App $app
* @param Sandbox $sandbox
*/
public function handle(App $app, Sandbox $sandbox);
}