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