FullNameFormatter   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 27
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 2
Bugs 0 Features 1
Metric Value
eloc 9
c 2
b 0
f 1
dl 0
loc 27
ccs 11
cts 11
cp 1
rs 10
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 2 1
A format() 0 12 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace MichaelRubel\Formatters\Collection;
6
7
use MichaelRubel\Formatters\Formatter;
8
9
class FullNameFormatter implements Formatter
10
{
11
    /**
12
     * @param  string|null  $name
13
     */
14 8
    public function __construct(public ?string $name)
15
    {
16
        //
17 8
    }
18
19
    /**
20
     * Format the full name.
21
     *
22
     * @return string
23
     */
24 8
    public function format(): string
25
    {
26 8
        $words = str($this->name)->split('/\s/');
27
28 8
        $this->name = $words->map(function (string $word) {
29 8
            return str($word)->ucfirst();
30 8
        })->join(' ');
31
32 8
        return str($this->name)
33 8
            ->replaceMatches('/\p{C}+/u', '')
34 8
            ->squish()
35 8
            ->value();
36
    }
37
}
38