Total Complexity | 2 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
5 | class Strings |
||
6 | { |
||
7 | |||
8 | /** |
||
9 | * The cache for snake-cased strings. |
||
10 | * |
||
11 | * @var array |
||
12 | */ |
||
13 | protected static $snakeCase = []; |
||
14 | |||
15 | /** |
||
16 | * Convert a string to snake case. |
||
17 | * |
||
18 | * @param string $value |
||
19 | * @return string |
||
20 | */ |
||
21 | public static function snakeCase($value) : string |
||
34 | } |