19 lines
394 B
PHP
19 lines
394 B
PHP
|
<?php
|
||
|
/**
|
||
|
* @link http://www.yiiframework.com/
|
||
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
||
|
* @license http://www.yiiframework.com/license/
|
||
|
*/
|
||
|
|
||
|
namespace yii\helpers;
|
||
|
|
||
|
/**
|
||
|
* Inflector pluralizes and singularizes English nouns. It also contains some other useful methods.
|
||
|
*
|
||
|
* @author Antonio Ramirez <amigo.cobos@gmail.com>
|
||
|
* @since 2.0
|
||
|
*/
|
||
|
class Inflector extends BaseInflector
|
||
|
{
|
||
|
}
|