/**
  * 
  * @return self
  */
 public function rewind()
 {
     if ($this->stream->isSeekable()) {
         $this->stream->rewind();
     }
     $this->currentLine = -1;
     return $this;
 }