Passed
Push — dev5 ( c3531a...a24f56 )
by Ron
08:14
created

GetCustomerDetails   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Test Coverage

Coverage 80%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 5
c 1
b 0
f 0
dl 0
loc 11
ccs 4
cts 5
cp 0.8
rs 10
wmc 2

1 Method

Rating   Name   Duplication   Size   Complexity  
A getDetailsWithParent() 0 9 2
1
<?php
2
3
namespace App\Domains\Customers;
4
5
use Illuminate\Support\Facades\Log;
6
use Illuminate\Support\Facades\Auth;
7
8
use App\Customers;
9
use App\Http\Resources\Customers as CustomerResource;
10
11
class GetCustomerDetails
12
{
13 4
    public function getDetailsWithParent($custID, $collection = false)
14
    {
15 4
        $details = Customers::where('cust_id', $custID)->with('ParentCustomer')->first();
16
17 4
        if($collection)
18
        {
19
            return new CustomerResource($details);
20
        }
21 4
        return $details;
22
    }
23
}
24