*/ interface CommentRepositoryInterface extends BaseRepositoryInterface { /** * @param array $filters * @return LengthAwarePaginator */ public function paginate(array $filters = [], int $perPage = 15): LengthAwarePaginator; /** * @return Collection */ public function getApprovedByCommentable(string $commentableType, int $commentableId): Collection; }