1 Star 0 Fork 0

berlin75/easyswoole

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
EasySwooleEvent.php 746 Bytes
一键复制 编辑 原始数据 按行查看 历史
berlin75 提交于 2024-04-08 00:31 . demo
<?php
namespace EasySwoole\EasySwoole;
use EasySwoole\EasySwoole\AbstractInterface\Event;
use EasySwoole\EasySwoole\Swoole\EventRegister;
use EasySwoole\ORM\Db\Connection;
use EasySwoole\ORM\DbManager;
use EasySwoole\EasySwoole\Crontab\Crontab;
use App\Crontab\CustomCrontab;
class EasySwooleEvent implements Event
{
public static function initialize()
{
date_default_timezone_set('Asia/Shanghai');
}
public static function mainServerCreate(EventRegister $register)
{
$config = new \EasySwoole\ORM\Db\Config(Config::getInstance()->getConf('MYSQL'));
DbManager::getInstance()->addConnection(new Connection($config));
// Crontab::getInstance()->addTask(CustomCrontab::class);
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/berlin75/easyswoole.git
git@gitee.com:berlin75/easyswoole.git
berlin75
easyswoole
easyswoole
master

搜索帮助