Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
35 | 4 | protected function getLocalEquipment() |
|
36 | { |
||
37 | 4 | $equipList = CustomerSystems::where('cust_id', $this->custID) |
|
38 | 4 | ->with('CustomerSystemData') |
|
39 | 4 | ->get(); |
|
40 | |||
41 | 4 | Log::debug('Customer Equipment Query completed for customer ID '.$this->custID.'. Results - ', array($equipList)); |
|
42 | 4 | return $equipList; |
|
43 | } |
||
56 |