Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
24 | public static function getFormattedString($identifier, $locale) |
||
25 | { |
||
26 | $formatArgs = array_slice(func_get_args(), 2); |
||
27 | |||
28 | $unformattedString = Strings::getString($identifier, $locale); |
||
29 | |||
30 | return is_null($unformattedString) ? |
||
31 | null : vsprintf($unformattedString, $formatArgs); |
||
32 | } |
||
33 | |||
63 |