1 Star 0 Fork 75

oostudy / Notadd

forked from Notadd / Notadd 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
notadd 2.17 KB
一键复制 编辑 原始数据 按行查看 历史
Seven Du 提交于 2017-09-22 10:32 . Fix Notadd CLI.
#!/usr/bin/env php
<?php
// +----------------------------------------------------------------------+
// | The Notadd Application. |
// +----------------------------------------------------------------------+
// | Copyright (c) 2016-2017 Shanxi Benchu Network Technology Co,.Ltd |
// +----------------------------------------------------------------------+
// | This source file is subject to version 2.0 of the Apache license, |
// | that is bundled with this package in the file LICENSE, and is |
// | available through the world-wide-web at the following url: |
// | http://www.apache.org/licenses/LICENSE-2.0.html |
// +----------------------------------------------------------------------+
// | Author: TwilRoad <heshudong@ibenchu.com> |
// | Seven Du <shiweidu@outlook.com> |
// +----------------------------------------------------------------------+
require __DIR__.'/storage/bootstraps/autoload.php';
$app = require_once __DIR__.'/storage/bootstraps/application.php';
/*
|--------------------------------------------------------------------------
| Run The Notadd Application
|--------------------------------------------------------------------------
|
| When we run the console application, the current CLI command will be
| executed in this console and the response sent back to a terminal
| or another output device for the developers. Here goes nothing!
|
*/
$kernel = $app->make(\Illuminate\Contracts\Console\Kernel::class);
$status = $kernel->handle(
$input = new Symfony\Component\Console\Input\ArgvInput,
new Symfony\Component\Console\Output\ConsoleOutput
);
/*
|--------------------------------------------------------------------------
| Shutdown The Application
|--------------------------------------------------------------------------
|
| Once Notadd has finished running, we will fire off the shutdown events
| so that any final work may be done by the application before we shut
| down the process. This is the last thing to happen to the request.
|
*/
$kernel->terminate($input, $status);
exit($status);
PHP
1
https://gitee.com/oostudy_admin/notadd.git
git@gitee.com:oostudy_admin/notadd.git
oostudy_admin
notadd
Notadd
master

搜索帮助