]> gitweb.fluxo.info Git - semanticscuttle.git/commitdiff
docblock for deleteAll
authorChristian Weiske <cweiske@cweiske.de>
Thu, 24 Mar 2011 18:11:06 +0000 (19:11 +0100)
committerChristian Weiske <cweiske@cweiske.de>
Thu, 24 Mar 2011 18:11:06 +0000 (19:11 +0100)
src/SemanticScuttle/Service/Bookmark2Tag.php

index 21ea0d5a8ab8badb9f39d4f0f1c0896631090530..beb4185382cd8d8f190b9e710b0efecbc825eb13 100644 (file)
@@ -674,7 +674,15 @@ class SemanticScuttle_Service_Bookmark2Tag extends SemanticScuttle_DbService
         return $output;
     }
 
-    function deleteAll() {
+
+
+    /**
+     * Deletes all tags in bookmarks2tags
+     *
+     * @return void
+     */
+    public function deleteAll()
+    {
         $query = 'TRUNCATE TABLE `'. $this->getTableName() .'`';
         $this->db->sql_query($query);
     }