1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-18 04:22:10 +02:00

Add @clsource PR #23 to correct a phpdoc typo in Functions.php

This commit is contained in:
Ryan Cramer
2016-11-03 11:30:48 -04:00
parent 2f66734a6b
commit 243998039f

View File

@@ -167,7 +167,7 @@ function wireRmdir($path, $recursive = false) {
* @param string $path May be a directory or a filename
* @param bool $recursive If set to true, all files and directories in $path will be recursively set as well.
* @param string $chmod If you want to set the mode to something other than PW's chmodFile/chmodDir settings,
you may override it by specifying it here. Ignored otherwise. Format should be a string, like "0755".
* you may override it by specifying it here. Ignored otherwise. Format should be a string, like "0755".
* @return bool Returns true if all changes were successful, or false if at least one chmod failed.
* @throws WireException when it receives incorrect chmod format
*