Changeset 4378
- Timestamp:
- 05/19/08 15:56:05 (14 months ago)
- Files:
-
- 1 modified
-
branches/0.11/lib/Doctrine/Inflector.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.11/lib/Doctrine/Inflector.php
r4247 r4378 24 24 * 25 25 * The methods in these classes are from several different sources collected 26 * across the internet through php development for several years.27 * They have been updated and modified a little bit for Doctrine but are mainly untouched.26 * across several different php projects and several different authors. The 27 * original author names and emails are not known 28 28 * 29 29 * @package Doctrine … … 34 34 * @version $Revision: 3189 $ 35 35 * @author Konsta Vesterinen <kvesteri@cc.hut.fi> 36 * @author Jonathan H. Wage <jonwage@gmail.com> 36 37 */ 37 38 class Doctrine_Inflector … … 133 134 '/([ti])a$/i' => '\\1um', 134 135 '/(n)ews$/i' => '\\1ews', 136 '/^(.{2,2})$/i' => '\\1', 135 137 '/s$/i' => ''); 136 138