/**
  * Apply filters
  *
  * Should be used after an update of the filter rules to re-apply filters
  * to description and content of an item.
  *
  * @return void
  */
 public function applyFiltersCommand()
 {
     $items = $this->itemRepository->findAll();
     foreach ($items as $item) {
         $item->setDescription($item->getDescription());
         $item->setContent($item->getContent());
         $this->itemRepository->update($item);
     }
 }