yii.php 825 Bytes
Newer Older
Qiang Xue committed
1 2 3 4 5 6
<?php
/**
 * Yii bootstrap file.
 *
 * @author Qiang Xue <qiang.xue@gmail.com>
 * @link http://www.yiiframework.com/
w  
Qiang Xue committed
7
 * @copyright Copyright &copy; 2008-2012 Yii Software LLC
Qiang Xue committed
8 9
 * @license http://www.yiiframework.com/license/
 * @version $Id: yii.php 2799 2011-01-01 19:31:13Z qiang.xue $
w  
Qiang Xue committed
10 11
 * @package yii
 * @since 2.0
Qiang Xue committed
12 13
 */

w  
Qiang Xue committed
14
require(__DIR__ . '/base/YiiBase.php');
Qiang Xue committed
15 16 17 18 19 20 21 22 23 24

/**
 * Yii is a helper class serving common framework functionalities.
 *
 * It encapsulates {@link YiiBase} which provides the actual implementation.
 * By writing your own Yii class, you can customize some functionalities of YiiBase.
 *
 * @author Qiang Xue <qiang.xue@gmail.com>
 * @version $Id: yii.php 2799 2011-01-01 19:31:13Z qiang.xue $
 * @package system
w  
Qiang Xue committed
25
 * @since 2.0
Qiang Xue committed
26
 */
w  
Qiang Xue committed
27
class Yii extends YiiBase
Qiang Xue committed
28 29
{
}
w  
Qiang Xue committed
30 31

spl_autoload_register(array('Yii', 'autoload'));