mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-08-26 14:49:44 +08:00
20 lines
692 B
PHP
20 lines
692 B
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2006~2019 http://thinkphp.cn All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
|
// +----------------------------------------------------------------------
|
|
// | Author: liu21st <liu21st@gmail.com>
|
|
// +----------------------------------------------------------------------
|
|
declare (strict_types = 1);
|
|
|
|
namespace think\event;
|
|
|
|
/**
|
|
* AppInit事件类
|
|
*/
|
|
class AppInit
|
|
{}
|