mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-09-20 01:09:48 +00:00
29 lines
779 B
PHP
29 lines
779 B
PHP
<?php
|
|
/**
|
|
* Yii bootstrap file.
|
|
*
|
|
* @author Qiang Xue <qiang.xue@gmail.com>
|
|
* @link http://www.yiiframework.com/
|
|
* @copyright Copyright © 2008-2009 Yii Software LLC
|
|
* @license http://www.yiiframework.com/license/
|
|
* @version $Id: yii.php 433 2008-12-30 22:59:17Z qiang.xue $
|
|
* @package system
|
|
* @since 1.0
|
|
*/
|
|
|
|
require(dirname(__FILE__).'/YiiBase.php');
|
|
|
|
/**
|
|
* 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 433 2008-12-30 22:59:17Z qiang.xue $
|
|
* @package system
|
|
* @since 1.0
|
|
*/
|
|
class Yii extends YiiBase
|
|
{
|
|
}
|