X-Git-Url: https://git.cweiske.de/phorkie.git/blobdiff_plain/7290b224b0ddeb369349d61f928190b96b6013b1..52de444faa10f37c4174e9fe2c75e77484342549:/src/phorkie/Tools.php diff --git a/src/phorkie/Tools.php b/src/phorkie/Tools.php index 843b2df..9435dc0 100644 --- a/src/phorkie/Tools.php +++ b/src/phorkie/Tools.php @@ -4,6 +4,13 @@ namespace phorkie; class Tools { + /** + * Delete an entire directory structure + * + * @param string $path Path to delete + * + * @return bool + */ public static function recursiveDelete($path) { if (!is_dir($path) || is_link($path)) { @@ -62,4 +69,4 @@ class Tools } -?> \ No newline at end of file +?>