__()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 1
CRAP Score 1

Importance

Changes 2
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 2
b 0
f 0
nc 1
nop 3
dl 0
loc 6
ccs 1
cts 1
cp 1
crap 1
rs 10
1
<?php
2
3
use Koded\I18n\I18n;
4
5
function __(
6
    string $string,
7
    array  $arguments = [],
8
    string $locale = ''): string
9
{
10 5
    return I18n::catalog($locale)->translate('messages', $string, $arguments);
11
}
12