Completed
Push — master ( 64c226...a9b192 )
by Elf
02:25
created

helpers.php ➔ api()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 1
dl 0
loc 4
ccs 0
cts 1
cp 0
crap 2
rs 10
c 0
b 0
f 0
1
<?php
2
3
use ElfSundae\Laravel\Api\Http\ApiResponse;
4
5
if (! function_exists('api')) {
6
    /**
7
     * Create a new API response.
8
     *
9
     * @return \ElfSundae\Laravel\Api\Http\ApiResponse
10
     */
11
    function api(...$args)
12
    {
13
        return new ApiResponse(...$args);
14
    }
15
}
16