mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-09-14 07:49:45 +08:00
22 lines
706 B
PHP
22 lines
706 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: yunwuxin <448901948@qq.com>
|
|
// +----------------------------------------------------------------------
|
|
declare (strict_types = 1);
|
|
|
|
namespace think\event;
|
|
|
|
/**
|
|
* 路由加载完成事件
|
|
*/
|
|
class RouteLoaded
|
|
{
|
|
|
|
}
|