GameLevelServiceInterface.php 278 B

1234567891011121314
  1. <?php
  2. namespace Yxy\Service;
  3. interface GameLevelServiceInterface
  4. {
  5. /**
  6. * 根据限制等级获取游戏限制信息
  7. * @param $id
  8. * @param int $promote_id
  9. * @return array
  10. */
  11. public function gameLimitByLevelId($id, int $promote_id = 0): array;
  12. }