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.

30 lines
522 B

  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Constants\v3;
  4. use Hyperf\Constants\AbstractConstants;
  5. use Hyperf\Constants\Annotation\Constants;
  6. /**
  7. * @Constants
  8. */
  9. class LogLabel extends AbstractConstants
  10. {
  11. /**
  12. * @Message("Error Code Log")
  13. */
  14. const ERROR_CODE_EXCEPTION = 'error_code_exception';
  15. /**
  16. * @Message("Order Online Log")
  17. */
  18. const ORDER_ONLINE_LOG = 'order_online_log';
  19. /**
  20. * @Message("Paymetn Log")
  21. */
  22. const ORDER_PAYMENT_LOG = 'order_payment_log';
  23. }