/**
  * Set default group to use in reader
  * @param string $group
  */
 public function group($group)
 {
     // set reader in group
     $this->_reader->group($group);
     // chain
     return $this;
 }
 /**
  * Set group in reader
  * @param string $group
  */
 public function group($group)
 {
     $this->_reader->group($group);
 }