Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
15 | public function details() |
||
16 | { |
||
17 | $this->andWhere([ |
||
18 | 'show_final' => true, |
||
19 | 'show_deleted' => true, |
||
20 | 'with_resources' => true, |
||
21 | 'with_parts' => true, |
||
22 | ]); |
||
23 | |||
24 | $this->joinWith(['resources' => function ($query) { |
||
25 | return $query->joinWith('part'); |
||
26 | }]); |
||
27 | |||
28 | return $this; |
||
29 | } |
||
30 | |||
36 |