mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-03-17 20:54:52 +08:00
20 lines
304 B
PHP
20 lines
304 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ZM\Store;
|
|
|
|
use Symfony\Component\Routing\RouteCollection;
|
|
|
|
/**
|
|
* 框架内部使用的全局变量
|
|
*/
|
|
class InternalGlobals
|
|
{
|
|
/**
|
|
* @var null|RouteCollection 用于保存 Route 注解的路由树
|
|
* @internal
|
|
*/
|
|
public static $routes;
|
|
}
|