Passed
Push — master ( 1d6d9a...2a90e7 )
by Ron
02:47 queued 12s
created

GetCustomerDetails::getDetails()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
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 5
ccs 0
cts 3
cp 0
crap 2
rs 10
c 0
b 0
f 0
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
    public function getDetails($custID)
14
    {
15
        $details = Customers::find($custID);
16
17
        return $details;
18
    }
19
20 4
    public function getDetailsWithParent($custID, $collection = false)
21
    {
22 4
        $details = Customers::where('cust_id', $custID)->with('ParentCustomer')->first();
23
24 4
        if($collection)
25
        {
26
            return new CustomerResource($details);
27
        }
28 4
        return $details;
29
    }
30
}
31