Completed
Pull Request — master (#9)
by Jodie
03:44
created

StrHelper::snakeCase()   A

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
dl 0
loc 10
ccs 7
cts 7
cp 1
rs 9.4285
c 0
b 0
f 0
cc 2
eloc 6
nc 2
nop 1
crap 2
1
<?php
2
3
namespace Rexlabs\Smokescreen\Helpers;
4
5
class StrHelper
6
{
7 11
    public static function studlyCase($str)
8
    {
9 11
        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