Conditions | 3 |
Paths | 4 |
Total Lines | 14 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 3 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
45 | 1 | public function delete($id, $uid = false) |
|
46 | { |
||
47 | 1 | $this->search->where($id, 'xref_id'); |
|
48 | |||
49 | 1 | if ($uid) { |
|
50 | 1 | $this->search->where($uid, 'uid'); |
|
51 | 1 | } |
|
52 | |||
53 | 1 | foreach ($this->search->hits() as $hit) { |
|
54 | 1 | $this->index->get()->delete($hit); |
|
55 | 1 | } |
|
56 | |||
57 | 1 | return $this; |
|
58 | } |
||
59 | } |
||
60 |