Completed
Push — master ( 7548cc...42bc8c )
by
unknown
01:29
created

helpers.php ➔ presenty()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 1
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * Copyright (c) Padosoft.com 2018.
4
 */
5
6
if (!function_exists('presenty')) {
7
    /**
8
     * Alias Object Presenty
9
     *
10
     * @return object
11
     */
12
    function presenty($string)
13
    {
14
        return \Padosoft\Presenty\Presenty::create($string);
15
    }
16
}
17