You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
331 B

  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Constants;
  4. use Hyperf\Constants\AbstractConstants;
  5. use Hyperf\Constants\Annotation\Constants;
  6. /**
  7. * @Constants
  8. */
  9. class LogLabel extends AbstractConstants
  10. {
  11. /**
  12. * @Message("Ssdb Log Label")
  13. */
  14. const SSDB_LOG = 'ssdb_log';
  15. const COUPON_LOG = 'coupon_log';
  16. }