ErrorCode.php 215 B

12345678910111213141516
  1. <?php
  2. /**
  3. * 错误码定义.
  4. * @author wangkuiwei
  5. * @name ErrorCode
  6. * @desc 错误码
  7. *
  8. */
  9. namespace App\Libs\Push\XMPush;
  10. class ErrorCode {
  11. const Success = 0;
  12. const NETWORK_ERROR_TIMEOUT = -1;
  13. }
  14. ?>