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.
 
 
 
 
 
 

16 lines
431 B

  1. <?php
  2. namespace JPush;
  3. class Config {
  4. const DISABLE_SOUND = "_disable_Sound";
  5. const DISABLE_BADGE = 0x10000;
  6. const USER_AGENT = 'JPush-API-PHP-Client';
  7. const CONNECT_TIMEOUT = 20;
  8. const READ_TIMEOUT = 120;
  9. const DEFAULT_MAX_RETRY_TIMES = 3;
  10. const DEFAULT_LOG_FILE = "./jpush.log";
  11. const HTTP_GET = 'GET';
  12. const HTTP_POST = 'POST';
  13. const HTTP_DELETE = 'DELETE';
  14. const HTTP_PUT = 'PUT';
  15. }