/** * Gets file owner * * @access public * * @param string $file Path to the file. * @return string|bool Username of the user or false on error. */ public function owner($file) { if ($this->authorized()) { return parent::owner($file); } else { return false; } }