summaryrefslogtreecommitdiff
path: root/classes/Fave.php
diff options
context:
space:
mode:
authorBrion Vibber <brion@pobox.com>2010-03-23 12:13:32 -0700
committerBrion Vibber <brion@pobox.com>2010-03-23 12:13:32 -0700
commit7277b59734cf0e39c8c77e01b13e8d997533bacf (patch)
tree18bc14d3ead88c649328c8354a3690b1c2491260 /classes/Fave.php
parentfcdbf421ab2bbbe4d1b601a8c80d4612c91f62fe (diff)
parent44caa3a93f452777c795006edb52ef4c5c2c4997 (diff)
Merge branch 'master' of git@gitorious.org:statusnet/mainline into testing
Diffstat (limited to 'classes/Fave.php')
-rw-r--r--classes/Fave.php10
1 files changed, 9 insertions, 1 deletions
diff --git a/classes/Fave.php b/classes/Fave.php
index a04f15e9c..7ca9ade7f 100644
--- a/classes/Fave.php
+++ b/classes/Fave.php
@@ -21,7 +21,15 @@ class Fave extends Memcached_DataObject
/* the code above is auto generated do not remove the tag below */
###END_AUTOCODE
- static function addNew($profile, $notice) {
+ /**
+ * Save a favorite record.
+ * @fixme post-author notification should be moved here
+ *
+ * @param Profile $profile the local or remote user who likes
+ * @param Notice $notice the notice that is liked
+ * @return mixed false on failure, or Fave record on success
+ */
+ static function addNew(Profile $profile, Notice $notice) {
$fave = null;