Merge branch 'master' into milestone
[phorkie.git] / src / phorkie / Tools.php
index 843b2df6d04e2d008cc1d0794d6ebff2ffab186e..9435dc047d560624036e464ccf76851c5b49ad2c 100644 (file)
@@ -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
+?>