diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/phorkie/Tools.php | 7 |
1 files changed, 7 insertions, 0 deletions
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)) { |
