Example #1
0
 /**
  * {@inheritdoc}
  */
 public function read()
 {
     if (feof($this->fh) || ($line = fgets($this->fh)) === false) {
         return null;
     }
     return LogFile::decodeRecord($line);
 }