findComments() 공개 정적인 메소드

public static findComments ( $storyId, $limit = 5, $afterId = null )
예제 #1
0
 public function comments(Story $story, $args)
 {
     $args += ['after' => null];
     return DataSource::findComments($story->id, $args['limit'], $args['after']);
 }