KeyService.php 176 B

12345678910111213
  1. <?php
  2. namespace app\extra\service\basic;
  3. class KeyService
  4. {
  5. public static function smsKey(int $mobile): string
  6. {
  7. return "sms_{$mobile}";
  8. }
  9. }