update to 3.0.0-alpha2 (build 610): refactor driver

This commit is contained in:
crazywhalecc
2022-08-01 16:31:54 +08:00
committed by Jerry Ma
parent f2a12634a4
commit 41b058aeaf
186 changed files with 1922 additions and 15444 deletions

View File

@@ -0,0 +1,19 @@
<?php
declare(strict_types=1);
namespace ZM\Store;
use Symfony\Component\Routing\RouteCollection;
/**
* 框架内部使用的全局变量
*/
class InternalGlobals
{
/**
* @var null|RouteCollection 用于保存 Route 注解的路由树
* @internal
*/
public static $routes;
}