Conditions | 5 |
Paths | 2 |
Total Lines | 14 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 30 |
Changes | 0 |
1 | <?php |
||
37 | public function prepare($builder) |
||
38 | { |
||
39 | // Is the query already doomed? |
||
40 | if (($this->fieldId !== null && empty($this->fieldId)) || |
||
41 | ($this->domain !== null && empty($this->domain)) |
||
42 | ) { |
||
43 | throw new QueryAbortedException(); |
||
44 | } |
||
45 | |||
46 | $this->applySiteConditions(); |
||
47 | $this->applyConditions(); |
||
48 | |||
49 | return parent::prepare($builder); |
||
50 | } |
||
51 | } |
||
52 |