Skip to content

Commit

Permalink
Merge pull request #913 from yiisoft/rename-helper-base-classes
Browse files Browse the repository at this point in the history
Fixes #911: Renamed base helper classes
  • Loading branch information
samdark committed Sep 27, 2013
2 parents f8ddb3d + 76cab3e commit d3db0b1
Show file tree
Hide file tree
Showing 23 changed files with 55 additions and 55 deletions.
22 changes: 11 additions & 11 deletions framework/yii/classes.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,27 +125,27 @@
'yii\grid\GridViewAsset' => YII_PATH . '/grid/GridViewAsset.php',
'yii\grid\SerialColumn' => YII_PATH . '/grid/SerialColumn.php',
'yii\helpers\ArrayHelper' => YII_PATH . '/helpers/ArrayHelper.php',
'yii\helpers\ArrayHelperBase' => YII_PATH . '/helpers/ArrayHelperBase.php',
'yii\helpers\AbstractArrayHelper' => YII_PATH . '/helpers/AbstractArrayHelper.php',
'yii\helpers\Console' => YII_PATH . '/helpers/Console.php',
'yii\helpers\ConsoleBase' => YII_PATH . '/helpers/ConsoleBase.php',
'yii\helpers\AbstractConsole' => YII_PATH . '/helpers/AbstractConsole.php',
'yii\helpers\FileHelper' => YII_PATH . '/helpers/FileHelper.php',
'yii\helpers\FileHelperBase' => YII_PATH . '/helpers/FileHelperBase.php',
'yii\helpers\AbstractFileHelper' => YII_PATH . '/helpers/AbstractFileHelper.php',
'yii\helpers\Html' => YII_PATH . '/helpers/Html.php',
'yii\helpers\HtmlBase' => YII_PATH . '/helpers/HtmlBase.php',
'yii\helpers\AbstractHtml' => YII_PATH . '/helpers/AbstractHtml.php',
'yii\helpers\HtmlPurifier' => YII_PATH . '/helpers/HtmlPurifier.php',
'yii\helpers\HtmlPurifierBase' => YII_PATH . '/helpers/HtmlPurifierBase.php',
'yii\helpers\AbstractHtmlPurifier' => YII_PATH . '/helpers/AbstractHtmlPurifier.php',
'yii\helpers\Inflector' => YII_PATH . '/helpers/Inflector.php',
'yii\helpers\InflectorBase' => YII_PATH . '/helpers/InflectorBase.php',
'yii\helpers\AbstractInflector' => YII_PATH . '/helpers/AbstractInflector.php',
'yii\helpers\Json' => YII_PATH . '/helpers/Json.php',
'yii\helpers\JsonBase' => YII_PATH . '/helpers/JsonBase.php',
'yii\helpers\AbstractJson' => YII_PATH . '/helpers/AbstractJson.php',
'yii\helpers\Markdown' => YII_PATH . '/helpers/Markdown.php',
'yii\helpers\MarkdownBase' => YII_PATH . '/helpers/MarkdownBase.php',
'yii\helpers\AbstractMarkdown' => YII_PATH . '/helpers/AbstractMarkdown.php',
'yii\helpers\Security' => YII_PATH . '/helpers/Security.php',
'yii\helpers\SecurityBase' => YII_PATH . '/helpers/SecurityBase.php',
'yii\helpers\AbstractSecurity' => YII_PATH . '/helpers/AbstractSecurity.php',
'yii\helpers\StringHelper' => YII_PATH . '/helpers/StringHelper.php',
'yii\helpers\StringHelperBase' => YII_PATH . '/helpers/StringHelperBase.php',
'yii\helpers\AbstractStringHelper' => YII_PATH . '/helpers/AbstractStringHelper.php',
'yii\helpers\VarDumper' => YII_PATH . '/helpers/VarDumper.php',
'yii\helpers\VarDumperBase' => YII_PATH . '/helpers/VarDumperBase.php',
'yii\helpers\AbstractVarDumper' => YII_PATH . '/helpers/AbstractVarDumper.php',
'yii\i18n\DbMessageSource' => YII_PATH . '/i18n/DbMessageSource.php',
'yii\i18n\Formatter' => YII_PATH . '/i18n/Formatter.php',
'yii\i18n\GettextFile' => YII_PATH . '/i18n/GettextFile.php',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@
use yii\base\InvalidParamException;

/**
* ArrayHelperBase provides concrete implementation for [[ArrayHelper]].
* AbstractArrayHelper provides concrete implementation for [[ArrayHelper]].
*
* Do not use ArrayHelperBase. Use [[ArrayHelper]] instead.
* Do not use AbstractArrayHelper. Use [[ArrayHelper]] instead.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
class ArrayHelperBase
abstract class AbstractArrayHelper
{
/**
* Converts an object or an array of objects into an array.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
namespace yii\helpers;

/**
* ConsoleBase provides concrete implementation for [[Console]].
* AbstractConsole provides concrete implementation for [[Console]].
*
* Do not use ConsoleBase. Use [[Console]] instead.
* Do not use AbstractConsole. Use [[Console]] instead.
*
* @author Carsten Brandt <mail@cebe.cc>
* @since 2.0
*/
class ConsoleBase
abstract class AbstractConsole
{
const FG_BLACK = 30;
const FG_RED = 31;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
use Yii;

/**
* FileHelperBase provides concrete implementation for [[FileHelper]].
* AbstractFileHelper provides concrete implementation for [[FileHelper]].
*
* Do not use FileHelperBase. Use [[FileHelper]] instead.
* Do not use AbstractFileHelper. Use [[FileHelper]] instead.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @author Alex Makarov <sam@rmcreative.ru>
* @since 2.0
*/
class FileHelperBase
abstract class AbstractFileHelper
{
/**
* Normalizes a file/directory path.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
use yii\base\Model;

/**
* HtmlBase provides concrete implementation for [[Html]].
* AbstractHtml provides concrete implementation for [[Html]].
*
* Do not use HtmlBase. Use [[Html]] instead.
* Do not use AbstractHtml. Use [[Html]] instead.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
class HtmlBase
abstract class AbstractHtml
{
/**
* @var array list of void elements (element name => 1)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
namespace yii\helpers;

/**
* HtmlPurifierBase provides concrete implementation for [[HtmlPurifier]].
* AbstractHtmlPurifier provides concrete implementation for [[HtmlPurifier]].
*
* Do not use HtmlPurifierBase. Use [[HtmlPurifier]] instead.
* Do not use AbstractHtmlPurifier. Use [[HtmlPurifier]] instead.
*
* @author Alexander Makarov <sam@rmcreative.ru>
* @since 2.0
*/
class HtmlPurifierBase
abstract class AbstractHtmlPurifier
{
/**
* Passes markup through HTMLPurifier making it safe to output to end user
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@
use Yii;

/**
* InflectorBase provides concrete implementation for [[Inflector]].
* AbstractInflector provides concrete implementation for [[Inflector]].
*
* Do not use InflectorBase. Use [[Inflector]] instead.
* Do not use AbstractInflector. Use [[Inflector]] instead.
*
* @author Antonio Ramirez <amigo.cobos@gmail.com>
* @since 2.0
*/
class InflectorBase
abstract class AbstractInflector
{
/**
* @var array the rules for converting a word into its plural form.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@
use yii\web\JsExpression;

/**
* JsonBase provides concrete implementation for [[Json]].
* AbstractJson provides concrete implementation for [[Json]].
*
* Do not use JsonBase. Use [[Json]] instead.
* Do not use AbstractJson. Use [[Json]] instead.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
class JsonBase
abstract class AbstractJson
{
/**
* Encodes the given value into a JSON string.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@
use Michelf\MarkdownExtra;

/**
* MarkdownBase provides concrete implementation for [[Markdown]].
* AbstractMarkdown provides concrete implementation for [[Markdown]].
*
* Do not use MarkdownBase. Use [[Markdown]] instead.
* Do not use AbstractMarkdown. Use [[Markdown]] instead.
*
* @author Alexander Makarov <sam@rmcreative.ru>
* @since 2.0
*/
class MarkdownBase
abstract class AbstractMarkdown
{
/**
* @var MarkdownExtra
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
use yii\base\InvalidParamException;

/**
* SecurityBase provides concrete implementation for [[Security]].
* AbstractSecurity provides concrete implementation for [[Security]].
*
* Do not use SecurityBase. Use [[Security]] instead.
* Do not use AbstractSecurity. Use [[Security]] instead.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @author Tom Worster <fsb@thefsb.org>
* @since 2.0
*/
class SecurityBase
abstract class AbstractSecurity
{
/**
* Encrypts data.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@
use yii\base\InvalidParamException;

/**
* StringHelperBase provides concrete implementation for [[StringHelper]].
* AbstractStringHelper provides concrete implementation for [[StringHelper]].
*
* Do not use StringHelperBase. Use [[StringHelper]] instead.
* Do not use AbstractStringHelper. Use [[StringHelper]] instead.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @author Alex Makarov <sam@rmcreative.ru>
* @since 2.0
*/
class StringHelperBase
abstract class AbstractStringHelper
{
/**
* Returns the number of bytes in the given string.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
namespace yii\helpers;

/**
* VarDumperBase provides concrete implementation for [[VarDumper]].
* AbstractVarDumper provides concrete implementation for [[VarDumper]].
*
* Do not use VarDumperBase. Use [[VarDumper]] instead.
* Do not use AbstractVarDumper. Use [[VarDumper]] instead.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
class VarDumperBase
abstract class AbstractVarDumper
{
private static $_objects;
private static $_output;
Expand Down
2 changes: 1 addition & 1 deletion framework/yii/helpers/ArrayHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
class ArrayHelper extends ArrayHelperBase
class ArrayHelper extends AbstractArrayHelper
{
}
2 changes: 1 addition & 1 deletion framework/yii/helpers/Console.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
* @author Carsten Brandt <mail@cebe.cc>
* @since 2.0
*/
class Console extends ConsoleBase
class Console extends AbstractConsole
{
}
2 changes: 1 addition & 1 deletion framework/yii/helpers/FileHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
* @author Alex Makarov <sam@rmcreative.ru>
* @since 2.0
*/
class FileHelper extends FileHelperBase
class FileHelper extends AbstractFileHelper
{
}
2 changes: 1 addition & 1 deletion framework/yii/helpers/Html.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
class Html extends HtmlBase
class Html extends AbstractHtml
{
}
2 changes: 1 addition & 1 deletion framework/yii/helpers/HtmlPurifier.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@
* @author Alexander Makarov <sam@rmcreative.ru>
* @since 2.0
*/
class HtmlPurifier extends HtmlPurifierBase
class HtmlPurifier extends AbstractHtmlPurifier
{
}
2 changes: 1 addition & 1 deletion framework/yii/helpers/Inflector.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
* @author Antonio Ramirez <amigo.cobos@gmail.com>
* @since 2.0
*/
class Inflector extends InflectorBase
class Inflector extends AbstractInflector
{
}
2 changes: 1 addition & 1 deletion framework/yii/helpers/Json.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
class Json extends JsonBase
class Json extends AbstractJson
{
}
2 changes: 1 addition & 1 deletion framework/yii/helpers/Markdown.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@
* @author Alexander Makarov <sam@rmcreative.ru>
* @since 2.0
*/
class Markdown extends MarkdownBase
class Markdown extends AbstractMarkdown
{
}
2 changes: 1 addition & 1 deletion framework/yii/helpers/Security.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@
* @author Tom Worster <fsb@thefsb.org>
* @since 2.0
*/
class Security extends SecurityBase
class Security extends AbstractSecurity
{
}
2 changes: 1 addition & 1 deletion framework/yii/helpers/StringHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
* @author Alex Makarov <sam@rmcreative.ru>
* @since 2.0
*/
class StringHelper extends StringHelperBase
class StringHelper extends AbstractStringHelper
{
}
2 changes: 1 addition & 1 deletion framework/yii/helpers/VarDumper.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
class VarDumper extends VarDumperBase
class VarDumper extends AbstractVarDumper
{
}

0 comments on commit d3db0b1

Please sign in to comment.