herosphp/event

event adapter herosphp 框架

安装: 81

依赖者: 0

建议者: 0

安全: 0

类型:

v1.0.0 2022-09-19 00:14 UTC

This package is auto-updated.

Last update: 2024-09-22 05:45:07 UTC


README

增加事件机制,主要是为了进行代码解耦。

安装

    composer install herosphp/event

发布配置文件

    composer vendor:publish "herosphp/event"

初始化类

<?php
declare(strict_types=1);
namespace app\init;

use herosphp\core\Config;
use herosphp\utils\Logger;
use herosphp\plugin\event\EventStarter as BaseEventStarter

class EventStarter extends BaseEventStarter
{
    protected static bool $debug = false;
}

EventStarter::init();