| 1 | <?php namespace Tamtamchik\NameCase; |
||
| 6 | class Formatter |
||
| 7 | { |
||
| 8 | const DEFAULT_OPTIONS = [ |
||
| 9 | 'lazy' => true, |
||
| 10 | 'irish' => true, |
||
| 11 | 'spanish' => true, |
||
| 12 | ]; |
||
| 13 | |||
| 14 | private static function upper($matches) |
||
| 18 | |||
| 19 | private static function lower($matches) |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @param string $string |
||
| 26 | * @param array $options |
||
| 27 | * |
||
| 28 | * @return string |
||
| 29 | */ |
||
| 30 | public static function nc($string, array $options = []) |
||
| 55 | } |
||
| 56 |