_filename = $filename; $this->_nblines = $nblines; $this->_hint = $hint; } /** * Gets the file path that was asked. * * @return string */ public function getFilename() { return $this->_filename; } /** * Gets the number of lines that was asked. * * @return int */ public function getNblines() { return $this->_nblines; } /** * Gets the median number of characters per line that was given, or * calculated, if applicable. * * @return int */ public function getHint() { return $this->_hint; } }