Browse Source

Renamed YiiBase to AbstractYii

tags/2.0.0-beta
Alexander Makarov 11 years ago
parent
commit
558f499439
  1. 2
      build/build.xml
  2. 2
      build/controllers/ClassmapController.php
  3. 2
      build/controllers/PhpDocController.php
  4. 2
      docs/internals/autoloader.md
  5. 8
      framework/yii/AbstractYii.php
  6. 6
      framework/yii/Yii.php
  7. 2
      framework/yii/log/Logger.php

2
build/build.xml

@ -265,7 +265,7 @@ Please update yiisite/common/data/versions.php file with the following code:
where <target name> can be one of the following:
- sync : synchronize yiilite.php and YiiBase.php
- sync : synchronize yiilite.php and AbstractYii.php
- message : extract i18n messages of the framework
- src : build source release
- doc : build documentation release (Windows only)

2
build/controllers/ClassmapController.php

@ -45,7 +45,7 @@ class ClassmapController extends Controller
'only' => array('.php'),
'except' => array(
'Yii.php',
'YiiBase.php',
'AbstractYii.php',
'/debug/',
'/console/',
'/test/',

2
build/controllers/PhpDocController.php

@ -56,7 +56,7 @@ class PhpDocController extends Controller
},
'only' => array('.php'),
'except' => array(
'YiiBase.php',
'AbstractYii.php',
'Yii.php',
'/debug/views/',
'/requirements/',

2
docs/internals/autoloader.md

@ -16,4 +16,4 @@ PEAR-style libraries
References
----------
- YiiBase::autoload
- AbstractYii::autoload

8
framework/yii/YiiBase.php → framework/yii/AbstractYii.php

@ -49,15 +49,15 @@ defined('YII_ENABLE_ERROR_HANDLER') or define('YII_ENABLE_ERROR_HANDLER', true);
/**
* YiiBase is the core helper class for the Yii framework.
* AbstractYii is the core helper class for the Yii framework.
*
* Do not use YiiBase directly. Instead, use its child class [[Yii]] where
* you can customize methods of YiiBase.
* Do not use AbstractYii directly. Instead, use its child class [[Yii]] where
* you can customize methods of AbstractYii.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
class YiiBase
abstract class AbstractYii
{
/**
* @var array class map used by the Yii autoloading mechanism.

6
framework/yii/Yii.php

@ -12,13 +12,13 @@ require(__DIR__ . '/YiiBase.php');
/**
* Yii is a helper class serving common framework functionalities.
*
* It extends from [[YiiBase]] which provides the actual implementation.
* By writing your own Yii class, you can customize some functionalities of [[YiiBase]].
* It extends from [[AbstractYii]] which provides the actual implementation.
* By writing your own Yii class, you can customize some functionalities of [[AbstractYii]].
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
class Yii extends \yii\YiiBase
class Yii extends \yii\AbstractYii
{
}

2
framework/yii/log/Logger.php

@ -220,7 +220,7 @@ class Logger extends Component
* Returns the total elapsed time since the start of the current request.
* This method calculates the difference between now and the timestamp
* defined by constant `YII_BEGIN_TIME` which is evaluated at the beginning
* of [[YiiBase]] class file.
* of [[AbstractYii]] class file.
* @return float the total elapsed time in seconds for current request.
*/
public function getElapsedTime()

Loading…
Cancel
Save