summaryrefslogtreecommitdiffstatshomepage
path: root/src/SemanticScuttle/Service/TagCache.php
diff options
context:
space:
mode:
authorGravatar cweiske2009-10-26 06:40:39 +0000
committerGravatar cweiske2009-10-26 06:40:39 +0000
commit0af3f228ac507c55a2c864aecf41ee82b2af9c5b (patch)
tree545abb7b48708af8f4d121f9ce0dc72f7ac186e0 /src/SemanticScuttle/Service/TagCache.php
parent3f340acd2ba93c678829d8bf0632f7e8121d13b3 (diff)
downloadscuttle-0af3f228ac507c55a2c864aecf41ee82b2af9c5b.tar.gz
scuttle-0af3f228ac507c55a2c864aecf41ee82b2af9c5b.zip
add docblocks to service classes
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@430 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'src/SemanticScuttle/Service/TagCache.php')
-rw-r--r--src/SemanticScuttle/Service/TagCache.php24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/SemanticScuttle/Service/TagCache.php b/src/SemanticScuttle/Service/TagCache.php
index 7908ae3..15644b6 100644
--- a/src/SemanticScuttle/Service/TagCache.php
+++ b/src/SemanticScuttle/Service/TagCache.php
@@ -1,5 +1,21 @@
<?php
/**
+ * SemanticScuttle - your social bookmark manager.
+ *
+ * PHP version 5.
+ *
+ * @category Bookmarking
+ * @package SemanticScuttle
+ * @author Benjamin Huynh-Kim-Bang <mensonge@users.sourceforge.net>
+ * @author Christian Weiske <cweiske@cweiske.de>
+ * @author Eric Dane <ericdane@users.sourceforge.net>
+ * @license GPL http://www.gnu.org/licenses/gpl.html
+ * @link http://sourceforge.net/projects/semanticscuttle
+ */
+
+/**
+ * SemanticScuttle tag caching service.
+ *
* This class infers on relation between tags by storing all
* the including tags or synonymous tag.
* For example, if the user creates: tag1>tag2>tag3, the system
@@ -9,6 +25,14 @@
* For synonymy, this table stores also the group of synonymous tags.
* The table must be updated for each modification of
* the relations between tags.
+ *
+ * @category Bookmarking
+ * @package SemanticScuttle
+ * @author Benjamin Huynh-Kim-Bang <mensonge@users.sourceforge.net>
+ * @author Christian Weiske <cweiske@cweiske.de>
+ * @author Eric Dane <ericdane@users.sourceforge.net>
+ * @license GPL http://www.gnu.org/licenses/gpl.html
+ * @link http://sourceforge.net/projects/semanticscuttle
*/
class SemanticScuttle_Service_TagCache extends SemanticScuttle_DbService
{