Passed
Push — dev5 ( 67c7cf...c7611f )
by Ron
19:22
created

GetCustomerDetails   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Test Coverage

Coverage 87.5%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 7
dl 0
loc 18
ccs 7
cts 8
cp 0.875
rs 10
c 1
b 0
f 0
wmc 3

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getDetailsWithParent() 0 9 2
A getDetails() 0 5 1
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 2
    public function getDetails($custID)
14
    {
15 2
        $details = Customers::find($custID);
16
17 2
        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