Inflector.php 394 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * @link http://www.yiiframework.com/
  4. * @copyright Copyright (c) 2008 Yii Software LLC
  5. * @license http://www.yiiframework.com/license/
  6. */
  7. namespace yii\helpers;
  8. /**
  9. * Inflector pluralizes and singularizes English nouns. It also contains some other useful methods.
  10. *
  11. * @author Antonio Ramirez <amigo.cobos@gmail.com>
  12. * @since 2.0
  13. */
  14. class Inflector extends BaseInflector
  15. {
  16. }