Ejemplo n.º 1
0
Archivo: FS.php Proyecto: techart/tao
 /**
  * Изменяет владельца файлового объекта
  *
  * @param  $owner
  *
  * @return boolean
  */
 public function chown($owner = null)
 {
     $this->stat = null;
     return IO_FS::chown($this->path, $owner);
 }