26 lines
869 B
PHP
26 lines
869 B
PHP
<?php
|
||
// +---------------------------------------------------------------------+
|
||
// | NiuCloud | [ WE CAN DO IT JUST NiuCloud ] |
|
||
// +---------------------------------------------------------------------+
|
||
// | Copy right 2019-2029 www.niucloud.com |
|
||
// +---------------------------------------------------------------------+
|
||
// | Author | NiuCloud <niucloud@outlook.com> |
|
||
// +---------------------------------------------------------------------+
|
||
// | Repository | https://github.com/niucloud/framework.git |
|
||
// +---------------------------------------------------------------------+
|
||
|
||
namespace addon\goodsgrab\event;
|
||
|
||
/**
|
||
* 应用安装
|
||
*/
|
||
class Install
|
||
{
|
||
/**
|
||
* 执行安装
|
||
*/
|
||
public function handle()
|
||
{
|
||
return success();
|
||
}
|
||
} |