CommentServiceInterface.php 377 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * Author: lf
  4. * Blog: https://blog.feehi.com
  5. * Email: job@feehi.com
  6. * Created at: 2020-01-23 11:40
  7. */
  8. namespace common\services;
  9. interface CommentServiceInterface extends ServiceInterface
  10. {
  11. const ServiceName = "commentService";
  12. public function getRecentComments($limit = 10);
  13. public function getCommentCountByPeriod($startAt=null, $endAt=null);
  14. }