Will return results as SearchHit objects.
Inheritance: implements Pagerfanta\Adapter\AdapterInterface
 /**
  * Returns a slice of the results as Location objects.
  *
  * @param integer $offset The offset.
  * @param integer $length The length.
  *
  * @return \Truffo\eZContentDecoratorBundle\Decorator\ContentDecorator[]
  */
 public function getSlice($offset, $length)
 {
     $list = array();
     foreach (parent::getSlice($offset, $length) as $hit) {
         $list[] = $this->contentDecoratorFactory->getContentDecorator($hit->valueObject);
     }
     return $list;
 }