酒店预订平台
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

LoggerAwareInterface.php 297 B

3 年前
123456789101112131415161718
  1. <?php
  2. namespace Psr\Log;
  3. /**
  4. * Describes a logger-aware instance.
  5. */
  6. interface LoggerAwareInterface
  7. {
  8. /**
  9. * Sets a logger instance on the object.
  10. *
  11. * @param LoggerInterface $logger
  12. *
  13. * @return void
  14. */
  15. public function setLogger(LoggerInterface $logger);
  16. }