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

Replace::toFormat()   A

Complexity

Conditions 3
Paths 4

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 3

Importance

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