findReplies() public static method

public static findReplies ( $commentId, $limit = 5, $afterId = null )
Exemplo n.º 1
0
 public function replies(Comment $comment, $args)
 {
     $args += ['after' => null];
     return DataSource::findReplies($comment->id, $args['limit'], $args['after']);
 }