12345678910111213141516171819 |
- <?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
- {
- }
|