/**
  * Retrieves manufacturer title.
  *
  * @param Article         $entity
  * @param ProductDocument $document
  */
 protected function extractManufacturer(Article $entity, ProductDocument $document)
 {
     try {
         $document->setManufacturer($entity->getManufacturer()->getTitle());
     } catch (EntityNotFoundException $exception) {
         // No manufacturer. Just ignore.
     }
 }