You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
599 B
26 lines
599 B
14 years ago
|
<?php
|
||
|
/**
|
||
|
* Yii bootstrap file.
|
||
|
*
|
||
|
* @link http://www.yiiframework.com/
|
||
12 years ago
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
||
14 years ago
|
* @license http://www.yiiframework.com/license/
|
||
|
*/
|
||
|
|
||
14 years ago
|
require(__DIR__ . '/YiiBase.php');
|
||
14 years ago
|
|
||
|
/**
|
||
|
* Yii is a helper class serving common framework functionalities.
|
||
|
*
|
||
14 years ago
|
* It extends from [[YiiBase]] which provides the actual implementation.
|
||
|
* By writing your own Yii class, you can customize some functionalities of [[YiiBase]].
|
||
14 years ago
|
*
|
||
|
* @author Qiang Xue <qiang.xue@gmail.com>
|
||
14 years ago
|
* @since 2.0
|
||
14 years ago
|
*/
|
||
12 years ago
|
class Yii extends \yii\YiiBase
|
||
14 years ago
|
{
|
||
|
}
|
||
14 years ago
|
|
||
|
spl_autoload_register(array('Yii', 'autoload'));
|