findReplies() public static method

public static findReplies ( $commentId, $limit = 5, $afterId = null )
コード例 #1
0
ファイル: CommentType.php プロジェクト: aeshion/ZeroPHP
 public function replies(Comment $comment, $args)
 {
     $args += ['after' => null];
     return DataSource::findReplies($comment->id, $args['limit'], $args['after']);
 }