酒店预订平台
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

19 satır
336 B

  1. <?php
  2. namespace Psr\Log;
  3. /**
  4. * Describes log levels.
  5. */
  6. class LogLevel
  7. {
  8. const EMERGENCY = 'emergency';
  9. const ALERT = 'alert';
  10. const CRITICAL = 'critical';
  11. const ERROR = 'error';
  12. const WARNING = 'warning';
  13. const NOTICE = 'notice';
  14. const INFO = 'info';
  15. const DEBUG = 'debug';
  16. }