Completed
Push — master ( 02549d...8f92fc )
by João
03:05
created

helpers.php ➔ _s()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 1
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
3
4
use Presspack\Framework\Support\Facades\Strings;
5
6
if (! function_exists('_s')) {
7
    function _s($string)
8
    {
9
        return Strings::get($string);
10
    }
11
}
12