Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
29 | public function onTrash(TrashEvent $event) |
||
30 | { |
||
31 | if ($event->getTrashItem() instanceof TrashItem) { |
||
32 | $this->searchHandler->deleteContent( |
||
33 | $event->getLocation()->contentId |
||
34 | ); |
||
35 | } |
||
36 | |||
37 | $this->searchHandler->deleteLocation( |
||
38 | $event->getLocation()->id, |
||
39 | $event->getLocation()->contentId |
||
40 | ); |
||
41 | } |
||
42 | } |
||
43 |