X-Git-Url: https://git.cweiske.de/phorkie.git/blobdiff_plain/1797cbc2b010552b54e9d070820fa9cbc9ce3af9..5d065586f4c16c0ec6510dba97b0d5facb859d75:/src/phorkie/Tools.php?ds=sidebyside diff --git a/src/phorkie/Tools.php b/src/phorkie/Tools.php index e4aab63..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)) {