Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
34 | 4 | protected function getLocalFiles() |
|
35 | { |
||
36 | 4 | $files = CustomerFiles::where('cust_id', $this->custID) |
|
37 | 4 | ->with('Files') |
|
38 | 4 | ->with('CustomerFileTypes') |
|
39 | 4 | ->with('User') |
|
40 | 4 | ->get(); |
|
41 | |||
42 | 4 | Log::debug('Customer Notes Query completed for customer ID '.$this->custID.'. Results - ', array($files)); |
|
43 | 4 | return $files; |
|
44 | } |
||
60 |