Completed
Pull Request — master (#9)
by Jodie
02:26
created

StrHelper::studlyCase()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

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