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