From: Justin J. Novack Date: Wed, 19 Sep 2012 00:49:58 +0000 (-0400) Subject: commented functions X-Git-Tag: v0.3.0~37 X-Git-Url: https://git.cweiske.de/phorkie.git/commitdiff_plain/9c9bbc151427ba04f0c609177d53a1ce8ca704f5?ds=sidebyside commented functions --- 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)) {