Yii.php 599 Bytes
Newer Older
Qiang Xue committed
1 2 3 4 5
<?php
/**
 * Yii bootstrap file.
 *
 * @link http://www.yiiframework.com/
Qiang Xue committed
6
 * @copyright Copyright (c) 2008 Yii Software LLC
Qiang Xue committed
7 8 9
 * @license http://www.yiiframework.com/license/
 */

w  
Qiang Xue committed
10
require(__DIR__ . '/YiiBase.php');
Qiang Xue committed
11 12 13 14

/**
 * Yii is a helper class serving common framework functionalities.
 *
w  
Qiang Xue committed
15 16
 * It extends from [[YiiBase]] which provides the actual implementation.
 * By writing your own Yii class, you can customize some functionalities of [[YiiBase]].
Qiang Xue committed
17 18
 *
 * @author Qiang Xue <qiang.xue@gmail.com>
w  
Qiang Xue committed
19
 * @since 2.0
Qiang Xue committed
20
 */
21
class Yii extends \yii\YiiBase
Qiang Xue committed
22 23
{
}
w  
Qiang Xue committed
24 25

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