StrHelper   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 3
eloc 8
c 0
b 0
f 0
dl 0
loc 17
ccs 9
cts 9
cp 1
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A studlyCase() 0 3 1
A snakeCase() 0 10 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