Exemple #1
0
 function getReplies($offset = 0, $limit = NOTICES_PER_PAGE, $since_id = 0, $before_id = 0)
 {
     $ids = Reply::stream($this->id, $offset, $limit, $since_id, $before_id);
     return Notice::getStreamByIds($ids);
 }
Exemple #2
0
 function getReplies($offset = 0, $limit = NOTICES_PER_PAGE, $since_id = 0, $before_id = 0)
 {
     return Reply::stream($this->id, $offset, $limit, $since_id, $before_id);
 }