1 Star 0 Fork 160

6灬6 / hyperf

forked from hyperf / hyperf 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
bootstrap.php 982 Bytes
一键复制 编辑 原始数据 按行查看 历史
李铭昕 提交于 2020-07-15 17:05 . Format code. (#2122)
<?php
declare(strict_types=1);
/**
* This file is part of Hyperf.
*
* @link https://www.hyperf.io
* @document https://hyperf.wiki
* @contact group@hyperf.io
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
*/
use Hyperf\Config\Listener\RegisterPropertyHandlerListener;
use Hyperf\Di\Aop\AstVisitorRegistry;
use Hyperf\Di\Aop\PropertyHandlerVisitor;
use Hyperf\Di\Aop\ProxyCallVisitor;
use Hyperf\Di\Aop\RegisterInjectPropertyHandler;
! defined('BASE_PATH') && define('BASE_PATH', __DIR__);
! defined('SWOOLE_HOOK_FLAGS') && define('SWOOLE_HOOK_FLAGS', SWOOLE_HOOK_ALL);
require_once BASE_PATH . '/vendor/autoload.php';
// Register AST visitors to the collector.
AstVisitorRegistry::insert(PropertyHandlerVisitor::class, PHP_INT_MAX / 2);
AstVisitorRegistry::insert(ProxyCallVisitor::class, PHP_INT_MAX / 2);
// Register Property Handler.
RegisterInjectPropertyHandler::register();
(new RegisterPropertyHandlerListener())->process(new \stdClass());
PHP
1
https://gitee.com/cool33/hyperf.git
git@gitee.com:cool33/hyperf.git
cool33
hyperf
hyperf
master

搜索帮助