findComments() public static method

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