mirror of
https://gitee.com/hyperf/hyperf.git
synced 2024-11-30 02:37:58 +08:00
36 lines
1.0 KiB
PHP
36 lines
1.0 KiB
PHP
<?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;
|
|
|
|
// ini_set('display_errors', 'on');
|
|
// ini_set('display_startup_errors', 'on');
|
|
//
|
|
// error_reporting(E_ALL);
|
|
|
|
! 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);
|
|
AstVisitorRegistry::insert(ProxyCallVisitor::class);
|
|
|
|
// Register Property Handler.
|
|
RegisterInjectPropertyHandler::register();
|
|
|
|
(new RegisterPropertyHandlerListener())->process(new \stdClass());
|