| Total Complexity | 5 |
| Total Lines | 39 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 5 | trait IncludesRelations |
||
| 6 | { |
||
| 7 | /** @var array $allowed_with */ |
||
| 8 | protected $allowed_with = []; |
||
| 9 | |||
| 10 | /** @var array $default_with */ |
||
| 11 | protected $default_with = []; |
||
| 12 | |||
| 13 | 4 | public function setAllowedWith(array $allowed) |
|
| 18 | } |
||
| 19 | |||
| 20 | 1 | public function setDefaultWith(array $with) |
|
| 25 | } |
||
| 26 | |||
| 27 | 42 | private function applyWith($query) |
|
| 46 |