| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 43 | 2 | protected function getParentNotes($parentID) |
|
| 44 | { |
||
| 45 | 2 | $parentNotes = CustomerNotes::where('cust_id', $parentID)->where('shared', 1)->orderBy('urgent', 'desc')->get(); |
|
| 46 | |||
| 47 | 2 | Log::debug('Customer Parent Notes Query completed for Customer ID '.$this->custID.'. Results - ', array($parentNotes)); |
|
| 48 | 2 | return $parentNotes; |
|
| 49 | } |
||
| 51 |