StrHelper::snakeCase()   A
last analyzed

Complexity

Conditions 2
Paths 2

Size

Total Lines 10
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 7
CRAP Score 2

Importance

Changes 0
Metric Value
eloc 6
c 0
b 0
f 0
dl 0
loc 10
ccs 7
cts 7
cp 1
rs 10
cc 2
nc 2
nop 1
crap 2
1
<?php
2
3
namespace Rexlabs\Smokescreen\Helpers;
4
5
class StrHelper
6
{
7 12
    public static function studlyCase($str)
8
    {
9 12
        return str_replace(' ', '', ucwords(str_replace(['-', '_'], ' ', $str)));
10
    }
11
12 1
    public static function snakeCase($str)
13
    {
14 1
        if (!ctype_lower($str)) {
15 1
            $str = preg_replace('/\s+/u', '', ucwords($str));
16 1
            $str = preg_replace('/(.)(?=[A-Z])/u', '$1_', $str);
17 1
            $str = preg_replace('/\W+/', '_', $str);
18 1
            $str = mb_strtolower($str, 'UTF-8');
19
        }
20
21 1
        return $str;
22
    }
23
}
24