示例#1
0
 /**
  * @param int $newMode The new mode (octal value).
  * @param bool $recursive
  * @return bool TRUE if the mode has been successfully modified, FALSE otherwise.
  * @throws EyeIOException
  * @throws EyeInvalidArgumentException
  * @throws EyeSecurityException
  */
 public function chmod($newMode, $recursive = false)
 {
     $this->checkAdminPermission();
     return parent::chmod($newMode, $recursive);
 }