1 | <?php |
||
14 | class Application extends ServiceContainer |
||
15 | { |
||
16 | /** |
||
17 | * @var array |
||
18 | */ |
||
19 | protected $providers = [ |
||
20 | Order\ServiceProvider::class, |
||
21 | Refund\ServiceProvider::class, |
||
22 | ]; |
||
23 | |||
24 | /** |
||
25 | * 订单支付成功通知 |
||
26 | * @param Closure $closure |
||
27 | * @author kaylv <[email protected]> |
||
28 | * @return string |
||
29 | */ |
||
30 | public function handlePaid(Closure $closure) |
||
34 | } |
||
35 |