1 Star 0 Fork 6

MISyuan/webman-admin

forked from 码龍/webman-admin 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
artisan 844 Bytes
一键复制 编辑 原始数据 按行查看 历史
码龍 提交于 2021-04-19 16:12 . 增加控制器捕获异常
#!/usr/bin/env php
<?php
require __DIR__ . '/vendor/autoload.php';
use Illuminate\Container\Container;
use Illuminate\Events\Dispatcher;
use Illuminate\Console\Application;
use Webman\Config;
use Dotenv\Dotenv;
use support\bootstrap\db\Laravel;
$container = new Container;
$events = new Dispatcher($container);
$artisan = new Application($container, $events, 'Version 1');
$artisan->setName('webman command');
if (method_exists('Dotenv\Dotenv', 'createUnsafeImmutable')) {
Dotenv::createUnsafeImmutable(base_path())->load();
} else {
Dotenv::createMutable(base_path())->load();
}
Config::load(config_path(), ['route', 'container']);
$bootstrap = Config::get('bootstrap');
foreach ($bootstrap as $class) {
$class::start(null);
}
$artisan->resolveCommands(config('command'));
$artisan->setCatchExceptions(true);
$artisan->run();
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/yp1995/webman-admin.git
git@gitee.com:yp1995/webman-admin.git
yp1995
webman-admin
webman-admin
master

搜索帮助