Passed
Push — main ( 272bc9...03c64c )
by Andrey
09:28 queued 07:38
created

Replace::toFormatArray()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 9
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 6
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 2
eloc 5
c 1
b 0
f 0
nc 2
nop 2
dl 0
loc 9
ccs 6
cts 6
cp 1
crap 2
rs 10
1
<?php
2
3
namespace Helldar\Support\Tools;
4
5
final class Replace
6
{
7 2
    public function toFormat(string $value, string $format = null): string
8
    {
9 2
        return empty($format) || $format === '%s' ? $value : sprintf($format, $value);
10
    }
11
12 20
    public function toFormatArray(array $values, string $format = null): array
13
    {
14 20
        if (empty($format)) {
15 20
            return $values;
16
        }
17
18 4
        return array_map(static function ($value) use ($format) {
19 4
            return sprintf($format, $value);
20 4
        }, $values);
21
    }
22
}
23