| 1 | <?php |
||
| 22 | class Inflector |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * Camelize a string. |
||
| 26 | * |
||
| 27 | * @static |
||
| 28 | * @access public |
||
| 29 | * @param string $string |
||
| 30 | * @return string |
||
| 31 | */ |
||
| 32 | public static function studlyCaps($string = null) |
||
| 46 | |||
| 47 | /** |
||
| 48 | * Underscore a string. |
||
| 49 | * |
||
| 50 | * @static |
||
| 51 | * @access public |
||
| 52 | * @param string $string |
||
| 53 | * @return string |
||
| 54 | */ |
||
| 55 | public static function underscore($string = null) |
||
| 63 | } |
||
| 64 |