FullNameFormatter::format()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 12
Code Lines 8

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 9
CRAP Score 1

Importance

Changes 2
Bugs 0 Features 1
Metric Value
cc 1
eloc 8
c 2
b 0
f 1
nc 1
nop 0
dl 0
loc 12
ccs 9
cts 9
cp 1
crap 1
rs 10
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