yii2-netdisk/yii

25 lines
697 B
Plaintext
Raw Normal View History

2013-05-24 22:14:49 +08:00
#!/usr/bin/env php
<?php
/**
* Yii console bootstrap file.
*
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
defined('YII_DEBUG') or define('YII_DEBUG', true);
// fcgi doesn't have STDIN and STDOUT defined by default
2013-05-24 22:14:49 +08:00
defined('STDIN') or define('STDIN', fopen('php://stdin', 'r'));
2014-01-25 05:33:28 +08:00
defined('STDOUT') or define('STDOUT', fopen('php://stdout', 'w'));
2013-05-24 22:14:49 +08:00
require(__DIR__ . '/vendor/autoload.php');
2014-01-11 10:58:50 +08:00
require(__DIR__ . '/vendor/yiisoft/yii2/Yii.php');
2013-05-24 22:14:49 +08:00
$config = require(__DIR__ . '/config/console.php');
$application = new yii\console\Application($config);
$exitCode = $application->run();
exit($exitCode);