blob: c2f82729743c6b3a6a3ad46c4f2db8213791cca2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/usr/bin/env php
<?php
/**
* Yii command line script for Unix/Linux.
*
* This is the bootstrap script for running yiic on Unix/Linux.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @link http://www.yiiframework.com/
* @copyright Copyright © 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
* @version $Id: yiic 702 2009-02-18 19:29:48Z qiang.xue $
*/
require_once(dirname(__FILE__).'/yiic.php');
|