/**
  * Get a range of items in the collection
  *
  * @param integer $start The starting index of the range
  * @param integer $end The ending index of the range
  * @return {{FooCollection}} A collection of items matching the range
  */
 public function getRange($start, $end)
 {
     return parent::getRange($start, $end);
 }