| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 41 | public function initFrom() |
||
| 42 | { |
||
| 43 | return $this->from('obj o') |
||
| 44 | ->leftJoin('zref t', 't.obj_id = o.class_id') |
||
| 45 | ->leftJoin('device d', 'd.obj_id = o.obj_id') |
||
| 46 | ->leftJoin('tariff tr', 'tr.obj_id = o.obj_id') |
||
| 47 | ->leftJoin('zref tt', 'tt.obj_id = coalesce(d.type_id, tr.type_id)'); |
||
| 48 | } |
||
| 50 |